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

Unified Diff: chrome/browser/debugger/debugger_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/debugger_remote_service.h
diff --git a/chrome/browser/debugger/debugger_remote_service.h b/chrome/browser/debugger/debugger_remote_service.h
index 02d75d377bc8d6904c22ea3adbb7c89a1e9baa30..7635117206c8064e783db82cc2a9ff135d7f3fac 100644
--- a/chrome/browser/debugger/debugger_remote_service.h
+++ b/chrome/browser/debugger/debugger_remote_service.h
@@ -68,11 +68,11 @@ class DebuggerRemoteService : public DevToolsRemoteListener {
// Processes |message| from the remote debugger, where the tool is
// "V8Debugger". Either sends the reply immediately or waits for an
// asynchronous response from the V8 debugger.
- virtual void HandleMessage(const DevToolsRemoteMessage& message);
+ virtual void HandleMessage(const DevToolsRemoteMessage& message) OVERRIDE;
// Gets invoked on the remote debugger [socket] connection loss.
// Notifies the InspectableTabProxy of the remote debugger detachment.
- virtual void OnConnectionLost();
+ virtual void OnConnectionLost() OVERRIDE;
// Specifies a tool name ("V8Debugger") handled by this class.
static const char kToolName[];

Powered by Google App Engine
This is Rietveld 408576698