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 #include "base/ref_counted.h" | 5 #include "base/ref_counted.h" |
6 #include "chrome/browser/browser.h" | 6 #include "chrome/browser/browser.h" |
7 #include "chrome/browser/browser_list.h" | 7 #include "chrome/browser/browser_list.h" |
8 #include "chrome/browser/renderer_host/render_view_host.h" | 8 #include "chrome/browser/renderer_host/render_view_host.h" |
9 #include "chrome/browser/debugger/devtools_manager.h" | 9 #include "chrome/browser/debugger/devtools_manager.h" |
10 #include "chrome/browser/debugger/devtools_client_host.h" | 10 #include "chrome/browser/debugger/devtools_client_host.h" |
11 #include "chrome/browser/extensions/extension_devtools_browsertest.h" | 11 #include "chrome/browser/extensions/extension_devtools_browsertest.h" |
| 12 #include "chrome/browser/extensions/extension_error_reporter.h" |
12 #include "chrome/browser/extensions/extension_host.h" | 13 #include "chrome/browser/extensions/extension_host.h" |
13 #include "chrome/browser/extensions/extension_process_manager.h" | 14 #include "chrome/browser/extensions/extension_process_manager.h" |
14 #include "chrome/browser/extensions/extensions_service.h" | 15 #include "chrome/browser/extensions/extensions_service.h" |
15 #include "chrome/browser/extensions/extension_tabs_module.h" | 16 #include "chrome/browser/extensions/extension_tabs_module.h" |
16 #include "chrome/browser/profile.h" | 17 #include "chrome/browser/profile.h" |
17 #include "chrome/browser/renderer_host/site_instance.h" | 18 #include "chrome/browser/renderer_host/site_instance.h" |
18 #include "chrome/browser/tab_contents/tab_contents.h" | 19 #include "chrome/browser/tab_contents/tab_contents.h" |
19 #include "chrome/common/chrome_paths.h" | 20 #include "chrome/common/chrome_paths.h" |
20 #include "chrome/common/devtools_messages.h" | 21 #include "chrome/common/devtools_messages.h" |
21 #include "chrome/common/extensions/extension_error_reporter.h" | |
22 #include "chrome/common/notification_service.h" | 22 #include "chrome/common/notification_service.h" |
23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
24 #include "chrome/test/ui_test_utils.h" | 24 #include "chrome/test/ui_test_utils.h" |
25 #include "net/base/net_util.h" | 25 #include "net/base/net_util.h" |
26 | 26 |
27 // Looks for an ExtensionHost whose URL has the given path component (including | 27 // Looks for an ExtensionHost whose URL has the given path component (including |
28 // leading slash). Also verifies that the expected number of hosts are loaded. | 28 // leading slash). Also verifies that the expected number of hosts are loaded. |
29 static ExtensionHost* FindHostWithPath(ExtensionProcessManager* manager, | 29 static ExtensionHost* FindHostWithPath(ExtensionProcessManager* manager, |
30 const std::string& path, | 30 const std::string& path, |
31 int expected_hosts) { | 31 int expected_hosts) { |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 | 152 |
153 // Removing the listeners from the second extension should tear the bridge | 153 // Removing the listeners from the second extension should tear the bridge |
154 // down. | 154 // down. |
155 result = false; | 155 result = false; |
156 ui_test_utils::ExecuteJavaScriptAndExtractBool( | 156 ui_test_utils::ExecuteJavaScriptAndExtractBool( |
157 host_two->render_view_host(), L"", L"unregisterListeners()", &result); | 157 host_two->render_view_host(), L"", L"unregisterListeners()", &result); |
158 EXPECT_TRUE(result); | 158 EXPECT_TRUE(result); |
159 ASSERT_FALSE(devtools_manager->GetDevToolsClientHostFor( | 159 ASSERT_FALSE(devtools_manager->GetDevToolsClientHostFor( |
160 tab_contents->render_view_host())); | 160 tab_contents->render_view_host())); |
161 } | 161 } |
OLD | NEW |