summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/inspectable_tab_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/inspectable_tab_proxy.h')
-rw-r--r--chrome/browser/debugger/inspectable_tab_proxy.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/debugger/inspectable_tab_proxy.h b/chrome/browser/debugger/inspectable_tab_proxy.h
index 90aef6b..ab1d6ce 100644
--- a/chrome/browser/debugger/inspectable_tab_proxy.h
+++ b/chrome/browser/debugger/inspectable_tab_proxy.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/hash_tables.h"
#include "content/browser/debugger/devtools_client_host.h"
@@ -72,14 +73,14 @@ class DevToolsClientHostImpl : public DevToolsClientHost {
void CloseImpl();
// DevToolsClientHost interface
- virtual void InspectedTabClosing();
- virtual void SendMessageToClient(const IPC::Message& msg);
- virtual void TabReplaced(TabContents* new_tab);
+ virtual void InspectedTabClosing() OVERRIDE;
+ virtual void SendMessageToClient(const IPC::Message& msg) OVERRIDE;
+ virtual void TabReplaced(TabContents* new_tab) OVERRIDE;
private:
// Message handling routines
void OnDebuggerOutput(const std::string& msg);
- virtual void FrameNavigating(const std::string& url);
+ virtual void FrameNavigating(const std::string& url) OVERRIDE;
void TabClosed();
int32 id_;