diff options
Diffstat (limited to 'chrome/browser/debugger/inspectable_tab_proxy.h')
-rw-r--r-- | chrome/browser/debugger/inspectable_tab_proxy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/debugger/inspectable_tab_proxy.h b/chrome/browser/debugger/inspectable_tab_proxy.h index 104b957..88913d7 100644 --- a/chrome/browser/debugger/inspectable_tab_proxy.h +++ b/chrome/browser/debugger/inspectable_tab_proxy.h @@ -33,6 +33,9 @@ class InspectableTabProxy { // the map. const ControllersMap& controllers_map(); + // Returns a DevToolsClientHostImpl for the given tab |id|. + DevToolsClientHostImpl* ClientHostForTabId(int32 id); + // Creates a new DevToolsClientHost implementor instance. // |id| is the UID of the tab to debug. // |service| is the DebuggerRemoteService instance the DevToolsClient @@ -70,6 +73,8 @@ class DevToolsClientHostImpl : public DevToolsClientHost { return service_; } + void Close(); + // DevToolsClientHost interface virtual void InspectedTabClosing(); virtual void SendMessageToClient(const IPC::Message& msg); |