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

Unified Diff: chrome/browser/extensions/api/messaging/message_service.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/api/messaging/message_service.h
diff --git a/chrome/browser/extensions/api/messaging/message_service.h b/chrome/browser/extensions/api/messaging/message_service.h
index a8ca3231bb8db84c18a7c7c36bfde9d5bc2bcaca..2fc5e805435d721595ee6e69c22f23b2bd9a0754 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);

Powered by Google App Engine
This is Rietveld 408576698