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/public/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" |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 #endif | 225 #endif |
226 TEST_PPAPI_IN_PROCESS(PostMessage) | 226 TEST_PPAPI_IN_PROCESS(PostMessage) |
227 #if !defined(OS_WIN) | 227 #if !defined(OS_WIN) |
228 // Times out on Windows XP: http://crbug.com/95557 | 228 // Times out on Windows XP: http://crbug.com/95557 |
229 TEST_PPAPI_OUT_OF_PROCESS(PostMessage) | 229 TEST_PPAPI_OUT_OF_PROCESS(PostMessage) |
230 #endif | 230 #endif |
231 | 231 |
232 TEST_PPAPI_IN_PROCESS(Memory) | 232 TEST_PPAPI_IN_PROCESS(Memory) |
233 TEST_PPAPI_OUT_OF_PROCESS(Memory) | 233 TEST_PPAPI_OUT_OF_PROCESS(Memory) |
234 | 234 |
235 TEST_PPAPI_IN_PROCESS(QueryPolicy) | |
236 //TEST_PPAPI_OUT_OF_PROCESS(QueryPolicy) | |
237 | |
238 TEST_PPAPI_IN_PROCESS(VideoDecoder) | 235 TEST_PPAPI_IN_PROCESS(VideoDecoder) |
239 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoder) | 236 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoder) |
240 | 237 |
241 // http://crbug.com/90039 and http://crbug.com/83443 (Mac) | 238 // http://crbug.com/90039 and http://crbug.com/83443 (Mac) |
242 TEST_F(PPAPITest, FAILS_FileIO) { | 239 TEST_F(PPAPITest, FAILS_FileIO) { |
243 RunTestViaHTTP("FileIO"); | 240 RunTestViaHTTP("FileIO"); |
244 } | 241 } |
245 TEST_F(OutOfProcessPPAPITest, FAILS_FileIO) { | 242 TEST_F(OutOfProcessPPAPITest, FAILS_FileIO) { |
246 RunTestViaHTTP("FileIO"); | 243 RunTestViaHTTP("FileIO"); |
247 } | 244 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { | 297 TEST_F(OutOfProcessPPAPITest, FAILS_Transport) { |
301 RunTestViaHTTP("Transport"); | 298 RunTestViaHTTP("Transport"); |
302 } | 299 } |
303 #endif // ENABLE_P2P_APIS | 300 #endif // ENABLE_P2P_APIS |
304 | 301 |
305 TEST_PPAPI_IN_PROCESS(UMA) | 302 TEST_PPAPI_IN_PROCESS(UMA) |
306 // There is no proxy. | 303 // There is no proxy. |
307 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { | 304 TEST_F(OutOfProcessPPAPITest, FAILS_UMA) { |
308 RunTest("UMA"); | 305 RunTest("UMA"); |
309 } | 306 } |
OLD | NEW |