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

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

Issue 8473003: Add OVERRIDE to chrome/browser/extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/extensions/extension_pref_store.h ('k') | chrome/browser/extensions/extension_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_processes_api.h
diff --git a/chrome/browser/extensions/extension_processes_api.h b/chrome/browser/extensions/extension_processes_api.h
index 712a222c4638b2b064dfb34d07ddb8a6696d2826..c77099e359cc92b7e277578501448d91d15cd33d 100644
--- a/chrome/browser/extensions/extension_processes_api.h
+++ b/chrome/browser/extensions/extension_processes_api.h
@@ -36,10 +36,10 @@ class ExtensionProcessesEventRouter : public TaskManagerModelObserver {
virtual ~ExtensionProcessesEventRouter();
// TaskManagerModelObserver methods.
- virtual void OnModelChanged() {}
- virtual void OnItemsChanged(int start, int length);
- virtual void OnItemsAdded(int start, int length) {}
- virtual void OnItemsRemoved(int start, int length) {}
+ virtual void OnModelChanged() OVERRIDE {}
+ virtual void OnItemsChanged(int start, int length) OVERRIDE;
+ virtual void OnItemsAdded(int start, int length) OVERRIDE {}
+ virtual void OnItemsRemoved(int start, int length) OVERRIDE {}
void DispatchEvent(Profile* profile,
const char* event_name,
@@ -63,7 +63,7 @@ class ExtensionProcessesEventRouter : public TaskManagerModelObserver {
// currently in use by the specified Tab.
class GetProcessIdForTabFunction : public SyncExtensionFunction {
virtual ~GetProcessIdForTabFunction() {}
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("experimental.processes.getProcessIdForTab")
};
« no previous file with comments | « chrome/browser/extensions/extension_pref_store.h ('k') | chrome/browser/extensions/extension_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698