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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
73 | 73 |
74 void Close(); | 74 void Close(); |
75 | 75 |
76 // DevToolsClientHost interface | 76 // DevToolsClientHost interface |
77 virtual void InspectedTabClosing(); | 77 virtual void InspectedTabClosing(); |
78 virtual void SendMessageToClient(const IPC::Message& msg); | 78 virtual void SendMessageToClient(const IPC::Message& msg); |
79 | 79 |
80 private: | 80 private: |
81 // Message handling routines | 81 // Message handling routines |
82 void OnDebuggerOutput(const std::string& msg); | 82 void OnDebuggerOutput(const std::string& msg); |
83 void FrameNavigating(const std::string& url); | 83 virtual void FrameNavigating(const std::string& url); |
Nico
2011/01/27 03:55:17
OVERRIDE? :-P
(requires base/compiler_specific.h)
| |
84 void TabClosed(); | 84 void TabClosed(); |
85 | 85 |
86 int32 id_; | 86 int32 id_; |
87 DebuggerRemoteService* service_; | 87 DebuggerRemoteService* service_; |
88 InspectableTabProxy::IdToClientHostMap* map_; | 88 InspectableTabProxy::IdToClientHostMap* map_; |
89 }; | 89 }; |
90 | 90 |
91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ | 91 #endif // CHROME_BROWSER_DEBUGGER_INSPECTABLE_TAB_PROXY_H_ |
OLD | NEW |