| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 void UnregisterAsDevToolsClientHost(); | 25 void UnregisterAsDevToolsClientHost(); |
| 26 | 26 |
| 27 // DevToolsClientHost, called when the tab inspected by this client is | 27 // DevToolsClientHost, called when the tab inspected by this client is |
| 28 // closing. | 28 // closing. |
| 29 virtual void InspectedTabClosing(); | 29 virtual void InspectedTabClosing(); |
| 30 | 30 |
| 31 // DevToolsClientHost, called to send a message to this host. | 31 // DevToolsClientHost, called to send a message to this host. |
| 32 virtual void SendMessageToClient(const IPC::Message& msg); | 32 virtual void SendMessageToClient(const IPC::Message& msg); |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 void OnDispatchToAPU(const std::string& data); | 35 void OnDispatchOnInspectorFrontend(const std::string& data); |
| 36 | 36 |
| 37 // ID of the tab we are monitoring. | 37 // ID of the tab we are monitoring. |
| 38 int tab_id_; | 38 int tab_id_; |
| 39 | 39 |
| 40 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; | 40 scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; |
| 41 scoped_refptr<ExtensionMessageService> extension_message_service_; | 41 scoped_refptr<ExtensionMessageService> extension_message_service_; |
| 42 | 42 |
| 43 // Profile that owns our tab | 43 // Profile that owns our tab |
| 44 Profile* profile_; | 44 Profile* profile_; |
| 45 | 45 |
| 46 // The names of the events fired at extensions depend on the tab id, | 46 // The names of the events fired at extensions depend on the tab id, |
| 47 // so we store the various event names in each bridge. | 47 // so we store the various event names in each bridge. |
| 48 const std::string on_page_event_name_; | 48 const std::string on_page_event_name_; |
| 49 const std::string on_tab_close_event_name_; | 49 const std::string on_tab_close_event_name_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge); | 51 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ | 54 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ |
| 55 | 55 |
| OLD | NEW |