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

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

Issue 8549032: Add OVERRIDE to chrome/service/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « chrome/service/cloud_print/job_status_updater.h ('k') | chrome/service/gaia/service_gaia_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 03b50f7ad4762051ebf942d0a40615504965dd34..a9de1787c96652d49f276f26c8b292e3486dc35a 100644
--- a/chrome/service/cloud_print/printer_job_handler.h
+++ b/chrome/service/cloud_print/printer_job_handler.h
@@ -129,33 +129,34 @@ class PrinterJobHandler : public base::RefCountedThreadSafe<PrinterJobHandler>,
const net::URLRequestStatus& status,
int response_code,
const net::ResponseCookies& cookies,
- const std::string& data);
+ const std::string& data) OVERRIDE;
virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
const content::URLFetcher* source,
const GURL& url,
- const std::string& data);
+ const std::string& data) OVERRIDE;
virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
const content::URLFetcher* source,
const GURL& url,
base::DictionaryValue* json_data,
- bool succeeded);
- virtual void OnRequestGiveUp();
- virtual CloudPrintURLFetcher::ResponseAction OnRequestAuthError();
- virtual std::string GetAuthHeader();
+ 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);
- virtual void OnAuthError();
+ virtual bool OnJobCompleted(JobStatusUpdater* updater) OVERRIDE;
+ virtual void OnAuthError() OVERRIDE;
// cloud_print::PrinterWatcherDelegate implementation
- virtual void OnPrinterDeleted();
- virtual void OnPrinterChanged();
- virtual void OnJobChanged();
+ virtual void OnPrinterDeleted() OVERRIDE;
+ virtual void OnPrinterChanged() OVERRIDE;
+ virtual void OnJobChanged() OVERRIDE;
// cloud_print::JobSpoolerDelegate implementation.
// Called on print_thread_.
- virtual void OnJobSpoolSucceeded(const cloud_print::PlatformJobId& job_id);
- virtual void OnJobSpoolFailed();
+ virtual void OnJobSpoolSucceeded(
+ const cloud_print::PlatformJobId& job_id) OVERRIDE;
+ virtual void OnJobSpoolFailed() OVERRIDE;
// End Delegate implementations
« no previous file with comments | « chrome/service/cloud_print/job_status_updater.h ('k') | chrome/service/gaia/service_gaia_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698