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

Unified Diff: chrome/service/cloud_print/printer_job_handler.h

Issue 628083002: Replacing the OVERRIDE with override and FINAL with final in chrome/service (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
Index: chrome/service/cloud_print/printer_job_handler.h
diff --git a/chrome/service/cloud_print/printer_job_handler.h b/chrome/service/cloud_print/printer_job_handler.h
index 3c1eb11a3035aaa1387f4d264956bfecaca2932e..46d29fde308ec58d4e3b27ad3670799ecc5309c8 100644
--- a/chrome/service/cloud_print/printer_job_handler.h
+++ b/chrome/service/cloud_print/printer_job_handler.h
@@ -121,33 +121,33 @@ class PrinterJobHandler : public base::RefCountedThreadSafe<PrinterJobHandler>,
const net::URLRequestStatus& status,
int response_code,
const net::ResponseCookies& cookies,
- const std::string& data) OVERRIDE;
+ const std::string& data) override;
virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
const net::URLFetcher* source,
const GURL& url,
- const std::string& data) OVERRIDE;
+ const std::string& data) override;
virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
const net::URLFetcher* source,
const GURL& url,
base::DictionaryValue* json_data,
- bool succeeded) OVERRIDE;
- virtual void OnRequestGiveUp() OVERRIDE;
- virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() OVERRIDE;
- virtual std::string GetAuthHeader() OVERRIDE;
+ bool succeeded) override;
+ virtual void OnRequestGiveUp() override;
+ virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError() override;
+ virtual std::string GetAuthHeader() override;
// JobStatusUpdater::Delegate implementation
- virtual bool OnJobCompleted(JobStatusUpdater* updater) OVERRIDE;
- virtual void OnAuthError() OVERRIDE;
+ virtual bool OnJobCompleted(JobStatusUpdater* updater) override;
+ virtual void OnAuthError() override;
// PrinterWatcherDelegate implementation
- virtual void OnPrinterDeleted() OVERRIDE;
- virtual void OnPrinterChanged() OVERRIDE;
- virtual void OnJobChanged() OVERRIDE;
+ virtual void OnPrinterDeleted() override;
+ virtual void OnPrinterChanged() override;
+ virtual void OnJobChanged() override;
// JobSpoolerDelegate implementation.
// Called on print_thread_.
- virtual void OnJobSpoolSucceeded(const PlatformJobId& job_id) OVERRIDE;
- virtual void OnJobSpoolFailed() OVERRIDE;
+ virtual void OnJobSpoolSucceeded(const PlatformJobId& job_id) override;
+ virtual void OnJobSpoolFailed() override;
// End Delegate implementations
« no previous file with comments | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/cloud_print/printer_job_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698