OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/bind.h" | 5 #include "base/bind.h" |
6 #include "base/cancelable_callback.h" | 6 #include "base/cancelable_callback.h" |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 #include "content/public/browser/devtools_http_handler.h" | 37 #include "content/public/browser/devtools_http_handler.h" |
38 #include "content/public/browser/devtools_manager.h" | 38 #include "content/public/browser/devtools_manager.h" |
39 #include "content/public/browser/notification_registrar.h" | 39 #include "content/public/browser/notification_registrar.h" |
40 #include "content/public/browser/notification_service.h" | 40 #include "content/public/browser/notification_service.h" |
41 #include "content/public/browser/render_view_host.h" | 41 #include "content/public/browser/render_view_host.h" |
42 #include "content/public/browser/web_contents.h" | 42 #include "content/public/browser/web_contents.h" |
43 #include "content/public/browser/worker_service.h" | 43 #include "content/public/browser/worker_service.h" |
44 #include "content/public/browser/worker_service_observer.h" | 44 #include "content/public/browser/worker_service_observer.h" |
45 #include "content/public/common/content_switches.h" | 45 #include "content/public/common/content_switches.h" |
46 #include "content/public/test/browser_test_utils.h" | 46 #include "content/public/test/browser_test_utils.h" |
47 #include "net/base/tcp_listen_socket.h" | 47 #include "net/socket/tcp_listen_socket.h" |
48 #include "net/test/test_server.h" | 48 #include "net/test/test_server.h" |
49 | 49 |
50 using content::BrowserThread; | 50 using content::BrowserThread; |
51 using content::DevToolsManager; | 51 using content::DevToolsManager; |
52 using content::DevToolsAgentHost; | 52 using content::DevToolsAgentHost; |
53 using content::NavigationController; | 53 using content::NavigationController; |
54 using content::RenderViewHost; | 54 using content::RenderViewHost; |
55 using content::WebContents; | 55 using content::WebContents; |
56 using content::WorkerService; | 56 using content::WorkerService; |
57 using content::WorkerServiceObserver; | 57 using content::WorkerServiceObserver; |
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); | 646 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); |
647 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); | 647 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); |
648 } | 648 } |
649 }; | 649 }; |
650 | 650 |
651 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { | 651 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { |
652 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; | 652 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; |
653 } | 653 } |
654 | 654 |
655 } // namespace | 655 } // namespace |
OLD | NEW |