| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 RunTest("UMA"); | 324 RunTest("UMA"); |
| 325 } | 325 } |
| 326 | 326 |
| 327 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) | 327 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) |
| 328 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) | 328 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) |
| 329 | 329 |
| 330 // PPB_TCPSocket_Private currently isn't supported in-process. | 330 // PPB_TCPSocket_Private currently isn't supported in-process. |
| 331 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { | 331 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { |
| 332 RunTestViaHTTP("TCPSocketPrivate"); | 332 RunTestViaHTTP("TCPSocketPrivate"); |
| 333 } | 333 } |
| 334 |
| 335 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop) |
| 336 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) |
| 337 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) |
| 338 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 339 TEST_PPAPI_IN_PROCESS(Flash_GetCommandLineArgs) |
| 340 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetInstanceAlwaysOnTop) |
| 341 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetProxyForURL) |
| 342 TEST_PPAPI_OUT_OF_PROCESS(Flash_MessageLoop) |
| 343 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetLocalTimeZoneOffset) |
| 344 TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs) |
| OLD | NEW |