summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_remote_service.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-21 16:51:06 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-21 16:51:06 +0000
commit0d5c08e06dc7c5e0f2895134cdd9c34c2402551c (patch)
treee3d11f0e103415425ba1d00468ecf38458bda2b0 /chrome/browser/debugger/debugger_remote_service.h
parent1a80b85a916168de948d92abf355df4e20529080 (diff)
downloadchromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.zip
chromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.tar.gz
chromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.tar.bz2
Add OVERRIDE to chrome/browser/.
BUG=104314 TEST=no change Review URL: http://codereview.chromium.org/8612007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110939 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger_remote_service.h')
-rw-r--r--chrome/browser/debugger/debugger_remote_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/debugger/debugger_remote_service.h b/chrome/browser/debugger/debugger_remote_service.h
index 02d75d3..7635117 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[];