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

Unified Diff: extensions/browser/app_window/app_window_geometry_cache.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (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
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();

Powered by Google App Engine
This is Rietveld 408576698