summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/messaging/message_service.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-03 17:40:32 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-04 00:40:55 +0000
commita15bee143f21dcc0fb91b8b7f81848a7e51a38bb (patch)
tree10b6e06058381b392a2e0147360afea9de38b36b /chrome/browser/extensions/api/messaging/message_service.h
parente7c9f7781cbc6db099dacbefdc19ac2fd9bfc19a (diff)
downloadchromium_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/messaging/message_service.h')
-rw-r--r--chrome/browser/extensions/api/messaging/message_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/api/messaging/message_service.h b/chrome/browser/extensions/api/messaging/message_service.h
index a8ca323..2fc5e80 100644
--- a/chrome/browser/extensions/api/messaging/message_service.h
+++ b/chrome/browser/extensions/api/messaging/message_service.h
@@ -147,7 +147,7 @@ class MessageService : public BrowserContextKeyedAPI,
// Closes the message channel associated with the given port, and notifies
// the other side.
virtual void CloseChannel(int port_id,
- const std::string& error_message) OVERRIDE;
+ const std::string& error_message) override;
// Enqueues a message on a pending channel, or sends a message to the given
// port if the channel isn't pending.
@@ -156,7 +156,7 @@ class MessageService : public BrowserContextKeyedAPI,
// NativeMessageProcessHost::Client
virtual void PostMessageFromNativeProcess(
int port_id,
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
private:
friend class MockMessageService;
@@ -195,7 +195,7 @@ class MessageService : public BrowserContextKeyedAPI,
// content::NotificationObserver interface.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// A process that might be in our list of channels has closed.
void OnProcessClosed(content::RenderProcessHost* process);