OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 #include "content/common/content_switches.h" | 9 #include "content/public/common/content_switches.h" |
10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
11 #include "chrome/test/automation/tab_proxy.h" | 11 #include "chrome/test/automation/tab_proxy.h" |
12 #include "chrome/test/ui/ui_test.h" | 12 #include "chrome/test/ui/ui_test.h" |
13 #include "net/base/net_util.h" | 13 #include "net/base/net_util.h" |
14 #include "net/test/test_server.h" | 14 #include "net/test/test_server.h" |
15 #include "webkit/plugins/plugin_switches.h" | 15 #include "webkit/plugins/plugin_switches.h" |
16 | 16 |
17 namespace { | 17 namespace { |
18 | 18 |
19 // Platform-specific filename relative to the chrome executable. | 19 // Platform-specific filename relative to the chrome executable. |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { | 300 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { |
301 RunTestViaHTTP("Transport"); | 301 RunTestViaHTTP("Transport"); |
302 } | 302 } |
303 #endif // ENABLE_P2P_APIS | 303 #endif // ENABLE_P2P_APIS |
304 | 304 |
305 TEST_PPAPI_IN_PROCESS(UMA) | 305 TEST_PPAPI_IN_PROCESS(UMA) |
306 // There is no proxy. | 306 // There is no proxy. |
307 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { | 307 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { |
308 RunTest("UMA"); | 308 RunTest("UMA"); |
309 } | 309 } |
OLD | NEW |