Standardize usage of virtual/override/final in printing/
commitd5a0f18a2795cf4cf5dc1b4f1354e6aca3a7cc6e
authordcheng <dcheng@chromium.org>
Wed, 22 Oct 2014 00:04:34 +0000 (21 17:04 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 22 Oct 2014 00:05:25 +0000 (22 00:05 +0000)
tree6ee673b3a09b0c4f8f01dc12661b9e528886a328
parent1ce56f7c60db7b27e0d13cdd45aa2ed1e74dc7ec
Standardize usage of virtual/override/final in printing/

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.

BUG=417463
R=vitalybuka@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#300573}
printing/backend/print_backend_cups.cc
printing/metafile.h
printing/pdf_metafile_cg_mac.h
printing/pdf_metafile_skia.h
printing/printing_context_mac.h