| 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);
|
|
|