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

Unified Diff: apps/app_load_service.h

Issue 666213002: Standardize usage of virtual/override/final in apps/ (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 | « apps/app_lifetime_monitor_factory.h ('k') | apps/app_load_service_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/app_load_service.h
diff --git a/apps/app_load_service.h b/apps/app_load_service.h
index 566672ecbfef4d29944b05ec399008c60c0bfbb0..aa9cc984078fc2ac0138b65b2a1a44d7de4e4d55 100644
--- a/apps/app_load_service.h
+++ b/apps/app_load_service.h
@@ -44,7 +44,7 @@ class AppLoadService : public KeyedService,
};
explicit AppLoadService(Profile* profile);
- virtual ~AppLoadService();
+ ~AppLoadService() override;
// Reload the application with the given id and then send it the OnRestarted
// event.
@@ -65,12 +65,12 @@ class AppLoadService : public KeyedService,
private:
// content::NotificationObserver.
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// extensions::ExtensionRegistryObserver.
- virtual void OnExtensionUnloaded(
+ void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
extensions::UnloadedExtensionInfo::Reason reason) override;
« no previous file with comments | « apps/app_lifetime_monitor_factory.h ('k') | apps/app_load_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698