| Index: apps/app_lifetime_monitor.h
|
| diff --git a/apps/app_lifetime_monitor.h b/apps/app_lifetime_monitor.h
|
| index dfaebef0cba3a1a0eef3d85b9646a4d0b213f841..8f079feb9b155f3b786565fdbc3a2fd7e1325d88 100644
|
| --- a/apps/app_lifetime_monitor.h
|
| +++ b/apps/app_lifetime_monitor.h
|
| @@ -49,24 +49,24 @@ class AppLifetimeMonitor : public KeyedService,
|
| };
|
|
|
| explicit AppLifetimeMonitor(Profile* profile);
|
| - virtual ~AppLifetimeMonitor();
|
| + ~AppLifetimeMonitor() override;
|
|
|
| void AddObserver(Observer* observer);
|
| void RemoveObserver(Observer* observer);
|
|
|
| private:
|
| // content::NotificationObserver overrides:
|
| - 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::AppWindowRegistry::Observer overrides:
|
| - virtual void OnAppWindowRemoved(extensions::AppWindow* app_window) override;
|
| - virtual void OnAppWindowHidden(extensions::AppWindow* app_window) override;
|
| - virtual void OnAppWindowShown(extensions::AppWindow* app_window) override;
|
| + void OnAppWindowRemoved(extensions::AppWindow* app_window) override;
|
| + void OnAppWindowHidden(extensions::AppWindow* app_window) override;
|
| + void OnAppWindowShown(extensions::AppWindow* app_window) override;
|
|
|
| // KeyedService overrides:
|
| - virtual void Shutdown() override;
|
| + void Shutdown() override;
|
|
|
| bool HasVisibleAppWindows(extensions::AppWindow* app_window) const;
|
|
|
|
|