Standardize usage of virtual/override/final specifiers in jingle/.
commita4ebdc4840d05c49bfe406a10f755c5374aa1339
authordcheng <dcheng@chromium.org>
Mon, 22 Dec 2014 23:11:30 +0000 (22 15:11 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 22 Dec 2014 23:12:34 +0000 (22 23:12 +0000)
tree2ee5932aeaefdca7c3c2cbecf3248c1c1d59efb8
parent40b4fa47b9288a0c262ecd3730e70bd4bb44576b
Standardize usage of virtual/override/final specifiers in jingle/.

The Google C++ style guide states:

  Explicitly annotate overrides of virtual functions or virtual
  destructors with an override or (less frequently) final specifier.
  Older (pre-C++11) code will use the virtual keyword as an inferior
  alternative annotation. For clarity, use exactly one of override,
  final, or virtual when declaring an override.

To better conform to these guidelines, the following constructs have
been rewritten:

- if a base class has a virtual destructor, then:
    virtual ~Foo();                   ->  ~Foo() override;
- virtual void Foo() override;        ->  void Foo() override;
- virtual void Foo() override final;  ->  void Foo() final;

This patch was automatically generated. The clang plugin can generate
fixit hints, which are suggested edits when it is 100% sure it knows how
to fix a problem. The hints from the clang plugin were applied to the
source tree using the tool in https://codereview.chromium.org/598073004.

Several formatting edits by clang-format were manually reverted, due to
mangling of some of the more complicate IPC macros.

BUG=417463

Review URL: https://codereview.chromium.org/822833002

Cr-Commit-Position: refs/heads/master@{#309482}
jingle/glue/channel_socket_adapter_unittest.cc
jingle/glue/chrome_async_socket_unittest.cc
jingle/glue/fake_ssl_client_socket_unittest.cc
jingle/glue/proxy_resolving_client_socket_unittest.cc
jingle/glue/pseudotcp_adapter_unittest.cc
jingle/glue/thread_wrapper_unittest.cc
jingle/notifier/base/weak_xmpp_client_unittest.cc
jingle/notifier/base/xmpp_connection_unittest.cc
jingle/notifier/communicator/single_login_attempt_unittest.cc
jingle/notifier/listener/non_blocking_push_client_unittest.cc
jingle/notifier/listener/push_client_unittest.cc