| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "chrome/browser/extensions/extension_devtools_manager.h" | 12 #include "chrome/browser/extensions/extension_devtools_manager.h" |
| 13 #include "chrome/browser/extensions/extension_message_service.h" | 13 #include "chrome/browser/extensions/extension_message_service.h" |
| 14 #include "content/browser/debugger/devtools_client_host.h" | 14 #include "content/public/browser/devtools/devtools_client_host.h" |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| 17 | 17 |
| 18 // This class is a DevToolsClientHost that fires extension events. | 18 // This class is a DevToolsClientHost that fires extension events. |
| 19 class ExtensionDevToolsBridge : public DevToolsClientHost { | 19 class ExtensionDevToolsBridge : public content::DevToolsClientHost { |
| 20 public: | 20 public: |
| 21 ExtensionDevToolsBridge(int tab_id, Profile* profile); | 21 ExtensionDevToolsBridge(int tab_id, Profile* profile); |
| 22 virtual ~ExtensionDevToolsBridge(); | 22 virtual ~ExtensionDevToolsBridge(); |
| 23 | 23 |
| 24 bool RegisterAsDevToolsClientHost(); | 24 bool RegisterAsDevToolsClientHost(); |
| 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(); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 48 | 48 |
| 49 // The names of the events fired at extensions depend on the tab id, | 49 // The names of the events fired at extensions depend on the tab id, |
| 50 // so we store the various event names in each bridge. | 50 // so we store the various event names in each bridge. |
| 51 const std::string on_page_event_name_; | 51 const std::string on_page_event_name_; |
| 52 const std::string on_tab_close_event_name_; | 52 const std::string on_tab_close_event_name_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge); | 54 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ | 57 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ |
| OLD | NEW |