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

Unified Diff: apps/app_restore_service.h

Issue 641963002: Replace OVERRIDE and FINAL with override and final in src/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_load_service_factory.h ('k') | apps/app_restore_service_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/app_restore_service.h
diff --git a/apps/app_restore_service.h b/apps/app_restore_service.h
index 125d50c68d4a9ac9872cef46d4ea851821d94e5b..5738b0558dbf181c571fd494cb0edc8c29ef1d9a 100644
--- a/apps/app_restore_service.h
+++ b/apps/app_restore_service.h
@@ -42,16 +42,16 @@ class AppRestoreService : public KeyedService,
private:
// AppLifetimeMonitor::Observer.
- virtual void OnAppStart(Profile* profile, const std::string& app_id) OVERRIDE;
+ virtual void OnAppStart(Profile* profile, const std::string& app_id) override;
virtual void OnAppActivated(Profile* profile,
- const std::string& app_id) OVERRIDE;
+ const std::string& app_id) override;
virtual void OnAppDeactivated(Profile* profile,
- const std::string& app_id) OVERRIDE;
- virtual void OnAppStop(Profile* profile, const std::string& app_id) OVERRIDE;
- virtual void OnChromeTerminating() OVERRIDE;
+ const std::string& app_id) override;
+ virtual void OnAppStop(Profile* profile, const std::string& app_id) override;
+ virtual void OnChromeTerminating() override;
// KeyedService.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
void RecordAppStart(const std::string& extension_id);
void RecordAppStop(const std::string& extension_id);
« no previous file with comments | « apps/app_load_service_factory.h ('k') | apps/app_restore_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698