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" |
11 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
12 #include "base/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "base/test/test_timeouts.h" | 14 #include "base/test/test_timeouts.h" |
15 #include "chrome/browser/devtools/browser_list_tabcontents_provider.h" | 15 #include "chrome/browser/devtools/browser_list_tabcontents_provider.h" |
16 #include "chrome/browser/devtools/devtools_window.h" | 16 #include "chrome/browser/devtools/devtools_window.h" |
17 #include "chrome/browser/extensions/extension_apitest.h" | 17 #include "chrome/browser/extensions/extension_apitest.h" |
18 #include "chrome/browser/extensions/extension_browsertest.h" | 18 #include "chrome/browser/extensions/extension_browsertest.h" |
19 #include "chrome/browser/extensions/extension_service.h" | 19 #include "chrome/browser/extensions/extension_service.h" |
20 #include "chrome/browser/extensions/extension_system.h" | 20 #include "chrome/browser/extensions/extension_system.h" |
21 #include "chrome/browser/extensions/unpacked_installer.h" | 21 #include "chrome/browser/extensions/unpacked_installer.h" |
22 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); | 641 PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_); |
642 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); | 642 test_data_dir_ = test_data_dir_.AppendASCII("devtools"); |
643 } | 643 } |
644 }; | 644 }; |
645 | 645 |
646 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { | 646 IN_PROC_BROWSER_TEST_F(RemoteDebuggingTest, RemoteDebugger) { |
647 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; | 647 ASSERT_TRUE(RunExtensionTest("target_list")) << message_; |
648 } | 648 } |
649 | 649 |
650 } // namespace | 650 } // namespace |
OLD | NEW |