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

Unified Diff: chrome/service/service_process.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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 | « chrome/service/service_ipc_server.h ('k') | chrome/service/service_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process.h
diff --git a/chrome/service/service_process.h b/chrome/service/service_process.h
index c37c1be063c373416f2e7e7907b92ada6013c25e..1b2bc78885e5eb8223aa6a0aca92c8f9f98d5191 100644
--- a/chrome/service/service_process.h
+++ b/chrome/service/service_process.h
@@ -35,7 +35,7 @@ class NetworkChangeNotifier;
class ServiceProcess : public cloud_print::CloudPrintProxy::Client {
public:
ServiceProcess();
- virtual ~ServiceProcess();
+ ~ServiceProcess() override;
// Initialize the ServiceProcess with the message loop that it should run on.
// ServiceProcess takes ownership of |state|.
@@ -90,8 +90,8 @@ class ServiceProcess : public cloud_print::CloudPrintProxy::Client {
cloud_print::CloudPrintProxy* GetCloudPrintProxy();
// CloudPrintProxy::Client implementation.
- virtual void OnCloudPrintProxyEnabled(bool persist_state) override;
- virtual void OnCloudPrintProxyDisabled(bool persist_state) override;
+ void OnCloudPrintProxyEnabled(bool persist_state) override;
+ void OnCloudPrintProxyDisabled(bool persist_state) override;
ServiceURLRequestContextGetter* GetServiceURLRequestContextGetter();
« no previous file with comments | « chrome/service/service_ipc_server.h ('k') | chrome/service/service_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698