OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ | 5 #ifndef CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ |
6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ | 6 #define CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 76 } |
77 | 77 |
78 void Close(); | 78 void Close(); |
79 | 79 |
80 // DevToolsClientHost interface | 80 // DevToolsClientHost interface |
81 virtual void InspectedTabClosing(); | 81 virtual void InspectedTabClosing(); |
82 virtual void SendMessageToClient(const IPC::Message& msg); | 82 virtual void SendMessageToClient(const IPC::Message& msg); |
83 | 83 |
84 private: | 84 private: |
85 // Message handling routines | 85 // Message handling routines |
86 void OnRpcMessage(const DevToolsMessageData& data); | 86 void OnDebuggerOutput(const std::string& msg); |
87 void DebuggerOutput(const std::string& msg); | |
88 void FrameNavigate(const std::string& url); | 87 void FrameNavigate(const std::string& url); |
89 void TabClosed(); | 88 void TabClosed(); |
90 | 89 |
91 int32 id_; | 90 int32 id_; |
92 DebuggerRemoteService* service_; | 91 DebuggerRemoteService* service_; |
93 InspectableTabProxy::IdToClientHostMap* map_; | 92 InspectableTabProxy::IdToClientHostMap* map_; |
94 }; | 93 }; |
95 | 94 |
96 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ | 95 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ |
OLD | NEW |