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

Unified Diff: chrome/browser/debugger/extension_ports_remote_service.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (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
Index: chrome/browser/debugger/extension_ports_remote_service.h
diff --git a/chrome/browser/debugger/extension_ports_remote_service.h b/chrome/browser/debugger/extension_ports_remote_service.h
index ce1aa4a385cfb3385b19cc68f08697a0ff28df5c..f0796d47f1a17eb73274a0e836862e0a50b0daba 100644
--- a/chrome/browser/debugger/extension_ports_remote_service.h
+++ b/chrome/browser/debugger/extension_ports_remote_service.h
@@ -44,17 +44,17 @@ class ExtensionPortsRemoteService : public DevToolsRemoteListener,
// Processes |message| from the external client (where the tool is
// "ExtensionPorts").
- virtual void HandleMessage(const DevToolsRemoteMessage& message);
+ virtual void HandleMessage(const DevToolsRemoteMessage& message) OVERRIDE;
// Gets invoked on the external client socket connection loss.
// Closes open message ports.
- virtual void OnConnectionLost();
+ virtual void OnConnectionLost() OVERRIDE;
// IPC::Message::Sender methods:
// This is the callback through which the ExtensionMessageService
// passes us messages from extensions as well as disconnect events.
- virtual bool Send(IPC::Message* msg);
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
private:
// Operation result returned in the "result" field in messages sent

Powered by Google App Engine
This is Rietveld 408576698