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

Unified Diff: extensions/browser/extension_registry_unittest.cc

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/extension_registry_unittest.cc
diff --git a/extensions/browser/extension_registry_unittest.cc b/extensions/browser/extension_registry_unittest.cc
index 37bf40d500d6fe46510e7227f5a75c4b5303e82a..2fcec81c7d11aaec73ba7b5a423c1cbddf87c172 100644
--- a/extensions/browser/extension_registry_unittest.cc
+++ b/extensions/browser/extension_registry_unittest.cc
@@ -49,14 +49,14 @@ class TestObserver : public ExtensionRegistryObserver {
private:
virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
- const Extension* extension) OVERRIDE {
+ const Extension* extension) override {
loaded_.push_back(extension);
}
virtual void OnExtensionUnloaded(content::BrowserContext* browser_context,
const Extension* extension,
UnloadedExtensionInfo::Reason reason)
- OVERRIDE {
+ override {
unloaded_.push_back(extension);
}
@@ -65,18 +65,18 @@ class TestObserver : public ExtensionRegistryObserver {
const Extension* extension,
bool is_update,
bool from_ephemeral,
- const std::string& old_name) OVERRIDE {
+ const std::string& old_name) override {
installed_.push_back(extension);
}
virtual void OnExtensionUninstalled(
content::BrowserContext* browser_context,
const Extension* extension,
- extensions::UninstallReason reason) OVERRIDE {
+ extensions::UninstallReason reason) override {
uninstalled_.push_back(extension);
}
- virtual void OnShutdown(extensions::ExtensionRegistry* registry) OVERRIDE {
+ virtual void OnShutdown(extensions::ExtensionRegistry* registry) override {
Reset();
}
« no previous file with comments | « extensions/browser/extension_registry_factory.h ('k') | extensions/browser/extension_web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698