OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/files/file_path.h" | 6 #include "base/files/file_path.h" |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/path_service.h" | |
9 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
10 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
11 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
12 #include "base/sys_info.h" | 11 #include "base/sys_info.h" |
13 #include "base/test/test_timeouts.h" | 12 #include "base/test/test_timeouts.h" |
14 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
15 #include "content/public/common/content_paths.h" | 14 #include "content/public/common/content_paths.h" |
16 #include "content/public/test/browser_test_utils.h" | 15 #include "content/public/test/browser_test_utils.h" |
17 #include "content/public/test/content_browser_test.h" | 16 #include "content/public/test/content_browser_test.h" |
18 #include "content/public/test/content_browser_test_utils.h" | 17 #include "content/public/test/content_browser_test_utils.h" |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 IN_PROC_BROWSER_TEST_F(WorkerTest, PassMessagePortToSharedWorker) { | 136 IN_PROC_BROWSER_TEST_F(WorkerTest, PassMessagePortToSharedWorker) { |
138 RunTest("pass_messageport_to_sharedworker.html", ""); | 137 RunTest("pass_messageport_to_sharedworker.html", ""); |
139 } | 138 } |
140 | 139 |
141 IN_PROC_BROWSER_TEST_F(WorkerTest, | 140 IN_PROC_BROWSER_TEST_F(WorkerTest, |
142 PassMessagePortToSharedWorkerDontWaitForConnect) { | 141 PassMessagePortToSharedWorkerDontWaitForConnect) { |
143 RunTest("pass_messageport_to_sharedworker_dont_wait_for_connect.html", ""); | 142 RunTest("pass_messageport_to_sharedworker_dont_wait_for_connect.html", ""); |
144 } | 143 } |
145 | 144 |
146 } // namespace content | 145 } // namespace content |
OLD | NEW |