| Index: chrome/browser/debugger/inspectable_tab_proxy.h
|
| diff --git a/chrome/browser/debugger/inspectable_tab_proxy.h b/chrome/browser/debugger/inspectable_tab_proxy.h
|
| index 90aef6b2bcc1575f34b7832385a55b4f5ca22cb8..ab1d6ce843119af08ec64cd4c051ee488646453c 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_;
|
|
|