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

Unified Diff: chrome/browser/printing/pdf_to_emf_converter.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
Index: chrome/browser/printing/pdf_to_emf_converter.cc
diff --git a/chrome/browser/printing/pdf_to_emf_converter.cc b/chrome/browser/printing/pdf_to_emf_converter.cc
index f0e998be438ef444f936c2790e2e96127de8aea8..d4fa00c9ed80bc08e78bbde71cc7db4721ad7a8d 100644
--- a/chrome/browser/printing/pdf_to_emf_converter.cc
+++ b/chrome/browser/printing/pdf_to_emf_converter.cc
@@ -61,8 +61,8 @@ class LazyEmf : public MetafilePlayer {
: temp_dir_(temp_dir), file_(file.Pass()) {}
virtual ~LazyEmf() { Close(); }
- virtual bool SafePlayback(HDC hdc) const OVERRIDE;
- virtual bool SaveTo(base::File* file) const OVERRIDE;
+ virtual bool SafePlayback(HDC hdc) const override;
+ virtual bool SaveTo(base::File* file) const override;
private:
void Close() const;
@@ -103,9 +103,9 @@ class PdfToEmfUtilityProcessHostClient
void Stop();
// UtilityProcessHostClient implementation.
- virtual void OnProcessCrashed(int exit_code) OVERRIDE;
- virtual void OnProcessLaunchFailed() OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnProcessCrashed(int exit_code) override;
+ virtual void OnProcessLaunchFailed() override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
private:
class GetPageCallbackData {
@@ -183,10 +183,10 @@ class PdfToEmfConverterImpl : public PdfToEmfConverter {
virtual void Start(const scoped_refptr<base::RefCountedMemory>& data,
const PdfRenderSettings& conversion_settings,
- const StartCallback& start_callback) OVERRIDE;
+ const StartCallback& start_callback) override;
virtual void GetPage(int page_number,
- const GetPageCallback& get_page_callback) OVERRIDE;
+ const GetPageCallback& get_page_callback) override;
// Helps to cancel callbacks if this object is destroyed.
void RunCallback(const base::Closure& callback);

Powered by Google App Engine
This is Rietveld 408576698