Standardize usage of virtual/override/final specifiers in net/.
commit2339883ce52b827c1fb3538c123c65b527e0759d
authordcheng <dcheng@chromium.org>
Tue, 23 Dec 2014 00:23:05 +0000 (22 16:23 -0800)
committerCommit bot <commit-bot@chromium.org>
Tue, 23 Dec 2014 00:23:47 +0000 (23 00:23 +0000)
tree2c154f383b63be33279898e99a82fc9cef347d4e
parentd77dccab40bd48b2d07d8d31269ee1b36449e589
Standardize usage of virtual/override/final specifiers in net/.

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/823663003

Cr-Commit-Position: refs/heads/master@{#309499}
net/base/layered_network_delegate.h
net/base/network_delegate_impl.h
net/base/sdch_manager_unittest.cc
net/base/test_completion_callback.h
net/cert/cert_policy_enforcer_unittest.cc
net/quic/quic_stream_factory_test.cc
net/socket/socket_test_util.h
net/url_request/sdch_dictionary_fetcher_unittest.cc
net/url_request/url_request_unittest.cc