| 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 27 matching lines...) Expand all Loading... |
| 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/socket/tcp_listen_socket.h" | 47 #include "net/socket/tcp_listen_socket.h" |
| 48 #include "net/test/spawned_test_server.h" | 48 #include "net/test/spawned_test_server/spawned_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; |
| 58 | 58 |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); | 639 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); |
| 640 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); | 640 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); |
| 641 } | 641 } |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { | 644 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { |
| 645 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; | 645 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; |
| 646 } | 646 } |
| 647 | 647 |
| 648 } // namespace | 648 } // namespace |
| OLD | NEW |