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

Unified Diff: chrome/browser/extensions/activity_log/activity_log.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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: chrome/browser/extensions/activity_log/activity_log.h
diff --git a/chrome/browser/extensions/activity_log/activity_log.h b/chrome/browser/extensions/activity_log/activity_log.h
index 60145a7d92a89e75ce3bd8163f547ceeb3363157..02ebb7c9d6f1a74eb9f25ac027a137748db26194 100644
--- a/chrome/browser/extensions/activity_log/activity_log.h
+++ b/chrome/browser/extensions/activity_log/activity_log.h
@@ -87,25 +87,25 @@ class ActivityLog : public BrowserContextKeyedAPI,
// We keep track of whether the whitelisted extension is installed; if it is,
// we want to recompute whether to have logging enabled.
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;
virtual void OnExtensionUninstalled(
content::BrowserContext* browser_context,
const Extension* extension,
- extensions::UninstallReason reason) OVERRIDE;
+ extensions::UninstallReason reason) override;
// ApiActivityMonitor.
virtual void OnApiEventDispatched(
const std::string& extension_id,
const std::string& event_name,
- scoped_ptr<base::ListValue> event_args) OVERRIDE;
+ scoped_ptr<base::ListValue> event_args) override;
virtual void OnApiFunctionCalled(
const std::string& extension_id,
const std::string& api_name,
- scoped_ptr<base::ListValue> event_args) OVERRIDE;
+ scoped_ptr<base::ListValue> event_args) override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
@@ -152,7 +152,7 @@ class ActivityLog : public BrowserContextKeyedAPI,
virtual void OnScriptsExecuted(
const content::WebContents* web_contents,
const ExecutingScriptsMap& extension_ids,
- const GURL& on_url) OVERRIDE;
+ const GURL& on_url) override;
// At the moment, ActivityLog will use only one policy for summarization.
// These methods are used to choose and set the most appropriate policy.

Powered by Google App Engine
This is Rietveld 408576698