| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 TEST_PPAPI_IN_PROCESS(CursorControl) | 164 TEST_PPAPI_IN_PROCESS(CursorControl) |
| 165 TEST_PPAPI_OUT_OF_PROCESS(CursorControl) | 165 TEST_PPAPI_OUT_OF_PROCESS(CursorControl) |
| 166 | 166 |
| 167 TEST_PPAPI_IN_PROCESS(Instance) | 167 TEST_PPAPI_IN_PROCESS(Instance) |
| 168 // http://crbug.com/91729 | 168 // http://crbug.com/91729 |
| 169 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Instance) | 169 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Instance) |
| 170 | 170 |
| 171 TEST_PPAPI_IN_PROCESS(Graphics2D) | 171 TEST_PPAPI_IN_PROCESS(Graphics2D) |
| 172 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) | 172 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) |
| 173 | 173 |
| 174 TEST_PPAPI_IN_PROCESS(Hello) |
| 175 TEST_PPAPI_OUT_OF_PROCESS(Hello) |
| 176 |
| 174 TEST_PPAPI_IN_PROCESS(ImageData) | 177 TEST_PPAPI_IN_PROCESS(ImageData) |
| 175 TEST_PPAPI_OUT_OF_PROCESS(ImageData) | 178 TEST_PPAPI_OUT_OF_PROCESS(ImageData) |
| 176 | 179 |
| 177 TEST_PPAPI_IN_PROCESS(Buffer) | 180 TEST_PPAPI_IN_PROCESS(Buffer) |
| 178 TEST_PPAPI_OUT_OF_PROCESS(Buffer) | 181 TEST_PPAPI_OUT_OF_PROCESS(Buffer) |
| 179 | 182 |
| 180 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLLoader) | 183 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLLoader) |
| 181 | 184 |
| 182 // http://crbug.com/89961 | 185 // http://crbug.com/89961 |
| 183 #if defined(OS_WIN) | 186 #if defined(OS_WIN) |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 RunTest("UMA"); | 312 RunTest("UMA"); |
| 310 } | 313 } |
| 311 | 314 |
| 312 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) | 315 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) |
| 313 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) | 316 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) |
| 314 | 317 |
| 315 // PPB_TCPSocket_Private currently isn't supported in-process. | 318 // PPB_TCPSocket_Private currently isn't supported in-process. |
| 316 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { | 319 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { |
| 317 RunTestViaHTTP("TCPSocketPrivate"); | 320 RunTestViaHTTP("TCPSocketPrivate"); |
| 318 } | 321 } |
| OLD | NEW |