diff options
author | mostynb <mostynb@opera.com> | 2014-10-03 17:40:32 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-04 00:40:55 +0000 |
commit | a15bee143f21dcc0fb91b8b7f81848a7e51a38bb (patch) | |
tree | 10b6e06058381b392a2e0147360afea9de38b36b /chrome/browser/extensions/api/processes | |
parent | e7c9f7781cbc6db099dacbefdc19ac2fd9bfc19a (diff) | |
download | chromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.zip chromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.tar.gz chromium_src-a15bee143f21dcc0fb91b8b7f81848a7e51a38bb.tar.bz2 |
replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/
BUG=417463
Review URL: https://codereview.chromium.org/624153002
Cr-Commit-Position: refs/heads/master@{#298134}
Diffstat (limited to 'chrome/browser/extensions/api/processes')
-rw-r--r-- | chrome/browser/extensions/api/processes/processes_api.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/chrome/browser/extensions/api/processes/processes_api.h b/chrome/browser/extensions/api/processes/processes_api.h index dd89ca2..2963d3f 100644 --- a/chrome/browser/extensions/api/processes/processes_api.h +++ b/chrome/browser/extensions/api/processes/processes_api.h @@ -53,14 +53,14 @@ class ProcessesEventRouter : public TaskManagerModelObserver, // content::NotificationObserver implementation. virtual void Observe(int type, const content::NotificationSource& source, - const content::NotificationDetails& details) OVERRIDE; + const content::NotificationDetails& details) override; // TaskManagerModelObserver methods. - virtual void OnItemsAdded(int start, int length) OVERRIDE; - virtual void OnModelChanged() OVERRIDE {} - virtual void OnItemsChanged(int start, int length) OVERRIDE; - virtual void OnItemsRemoved(int start, int length) OVERRIDE {} - virtual void OnItemsToBeRemoved(int start, int length) OVERRIDE; + virtual void OnItemsAdded(int start, int length) override; + virtual void OnModelChanged() override {} + virtual void OnItemsChanged(int start, int length) override; + virtual void OnItemsRemoved(int start, int length) override {} + virtual void OnItemsToBeRemoved(int start, int length) override; // Internal helpers for processing notifications. void ProcessHangEvent(content::RenderWidgetHost* widget); @@ -101,7 +101,7 @@ class ProcessesAPI : public BrowserContextKeyedAPI, virtual ~ProcessesAPI(); // KeyedService implementation. - virtual void Shutdown() OVERRIDE; + virtual void Shutdown() override; // BrowserContextKeyedAPI implementation. static BrowserContextKeyedAPIFactory<ProcessesAPI>* GetFactoryInstance(); @@ -112,8 +112,8 @@ class ProcessesAPI : public BrowserContextKeyedAPI, ProcessesEventRouter* processes_event_router(); // EventRouter::Observer implementation. - virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE; - virtual void OnListenerRemoved(const EventListenerInfo& details) OVERRIDE; + virtual void OnListenerAdded(const EventListenerInfo& details) override; + virtual void OnListenerRemoved(const EventListenerInfo& details) override; private: friend class BrowserContextKeyedAPIFactory<ProcessesAPI>; @@ -139,7 +139,7 @@ class GetProcessIdForTabFunction : public ChromeAsyncExtensionFunction { private: virtual ~GetProcessIdForTabFunction() {} - virtual bool RunAsync() OVERRIDE; + virtual bool RunAsync() override; void GetProcessIdForTab(); @@ -161,7 +161,7 @@ class TerminateFunction : public ChromeAsyncExtensionFunction { private: virtual ~TerminateFunction() {} - virtual bool RunAsync() OVERRIDE; + virtual bool RunAsync() override; void TerminateProcess(); @@ -180,7 +180,7 @@ class GetProcessInfoFunction : public ChromeAsyncExtensionFunction { private: virtual ~GetProcessInfoFunction(); - virtual bool RunAsync() OVERRIDE; + virtual bool RunAsync() override; void GatherProcessInfo(); |