Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Unified Diff: printing/metafile.h

Issue 668073002: Standardize usage of virtual/override/final in printing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/backend/print_backend_cups.cc ('k') | printing/pdf_metafile_cg_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/metafile.h
diff --git a/printing/metafile.h b/printing/metafile.h
index 0078d8b1f7d081dea2c6b4199a26da2535f87f9f..12b50334e432cb9c6b158f14b58bb3dfb9577f71 100644
--- a/printing/metafile.h
+++ b/printing/metafile.h
@@ -99,7 +99,7 @@ class PRINTING_EXPORT MetafilePlayer {
class PRINTING_EXPORT Metafile : public MetafilePlayer {
public:
Metafile();
- virtual ~Metafile();
+ ~Metafile() override;
// Initializes a fresh new metafile for rendering. Returns false on failure.
// Note: It should only be called from within the renderer process to allocate
@@ -163,7 +163,7 @@ class PRINTING_EXPORT Metafile : public MetafilePlayer {
bool GetDataAsVector(std::vector<char>* buffer) const;
- virtual bool SaveTo(base::File* file) const override;
+ bool SaveTo(base::File* file) const override;
private:
DISALLOW_COPY_AND_ASSIGN(Metafile);
« no previous file with comments | « printing/backend/print_backend_cups.cc ('k') | printing/pdf_metafile_cg_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698