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

Unified Diff: chrome/browser/sync/test/integration/extensions_helper.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/sync/test/integration/extensions_helper.cc
diff --git a/chrome/browser/sync/test/integration/extensions_helper.cc b/chrome/browser/sync/test/integration/extensions_helper.cc
index 34361de78fa40c0a3b42da283f602d9d004d53e6..90b33d2419f4f160cda3a2a0fcb4fda3ef3c4cc4 100644
--- a/chrome/browser/sync/test/integration/extensions_helper.cc
+++ b/chrome/browser/sync/test/integration/extensions_helper.cc
@@ -144,25 +144,25 @@ class ExtensionsMatchChecker : public StatusChangeChecker,
virtual ~ExtensionsMatchChecker();
// StatusChangeChecker implementation.
- virtual std::string GetDebugMessage() const OVERRIDE;
- virtual bool IsExitConditionSatisfied() OVERRIDE;
+ virtual std::string GetDebugMessage() const override;
+ virtual bool IsExitConditionSatisfied() override;
// extensions::ExtensionRegistryObserver implementation.
virtual void OnExtensionLoaded(
content::BrowserContext* context,
- const extensions::Extension* extension) OVERRIDE;
+ const extensions::Extension* extension) override;
virtual void OnExtensionUnloaded(
content::BrowserContext* context,
const extensions::Extension* extenion,
- extensions::UnloadedExtensionInfo::Reason reason) OVERRIDE;
+ extensions::UnloadedExtensionInfo::Reason reason) override;
virtual void OnExtensionInstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
- bool is_update) OVERRIDE;
+ bool is_update) override;
virtual void OnExtensionUninstalled(
content::BrowserContext* browser_context,
const extensions::Extension* extension,
- extensions::UninstallReason reason) OVERRIDE;
+ extensions::UninstallReason reason) override;
void Wait();

Powered by Google App Engine
This is Rietveld 408576698