| Index: extensions/browser/app_window/app_window_geometry_cache.h
|
| diff --git a/extensions/browser/app_window/app_window_geometry_cache.h b/extensions/browser/app_window/app_window_geometry_cache.h
|
| index f73ae48d037a37c5288e0f62291da5367447759f..a0cd10c8eb6fe02146284acbebaf51b9e6baabac 100644
|
| --- a/extensions/browser/app_window/app_window_geometry_cache.h
|
| +++ b/extensions/browser/app_window/app_window_geometry_cache.h
|
| @@ -49,10 +49,10 @@ class AppWindowGeometryCache : public KeyedService,
|
|
|
| // BrowserContextKeyedServiceFactory
|
| virtual KeyedService* BuildServiceInstanceFor(
|
| - content::BrowserContext* context) const OVERRIDE;
|
| - virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
|
| + content::BrowserContext* context) const override;
|
| + virtual bool ServiceIsNULLWhileTesting() const override;
|
| virtual content::BrowserContext* GetBrowserContextToUse(
|
| - content::BrowserContext* context) const OVERRIDE;
|
| + content::BrowserContext* context) const override;
|
| };
|
|
|
| class Observer {
|
| @@ -90,7 +90,7 @@ class AppWindowGeometryCache : public KeyedService,
|
| ui::WindowShowState* state);
|
|
|
| // KeyedService
|
| - virtual void Shutdown() OVERRIDE;
|
| + virtual void Shutdown() override;
|
|
|
| void AddObserver(Observer* observer);
|
| void RemoveObserver(Observer* observer);
|
| @@ -122,11 +122,11 @@ class AppWindowGeometryCache : public KeyedService,
|
|
|
| // ExtensionRegistryObserver implementation.
|
| virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
|
| - const Extension* extension) OVERRIDE;
|
| + const Extension* extension) override;
|
| virtual void OnExtensionUnloaded(
|
| content::BrowserContext* browser_context,
|
| const Extension* extension,
|
| - UnloadedExtensionInfo::Reason reason) OVERRIDE;
|
| + UnloadedExtensionInfo::Reason reason) override;
|
|
|
| void LoadGeometryFromStorage(const std::string& extension_id);
|
| void SyncToStorage();
|
|
|