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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 157 |
158 TEST_PPAPI_IN_PROCESS(Broker) | 158 TEST_PPAPI_IN_PROCESS(Broker) |
159 TEST_PPAPI_OUT_OF_PROCESS(Broker) | 159 TEST_PPAPI_OUT_OF_PROCESS(Broker) |
160 | 160 |
161 TEST_PPAPI_IN_PROCESS(Core) | 161 TEST_PPAPI_IN_PROCESS(Core) |
162 TEST_PPAPI_OUT_OF_PROCESS(Core) | 162 TEST_PPAPI_OUT_OF_PROCESS(Core) |
163 | 163 |
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(InputEvent) |
| 168 TEST_PPAPI_OUT_OF_PROCESS(InputEvent) |
| 169 |
167 TEST_PPAPI_IN_PROCESS(Instance) | 170 TEST_PPAPI_IN_PROCESS(Instance) |
168 // http://crbug.com/91729 | 171 // http://crbug.com/91729 |
169 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Instance) | 172 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Instance) |
170 | 173 |
171 TEST_PPAPI_IN_PROCESS(Graphics2D) | 174 TEST_PPAPI_IN_PROCESS(Graphics2D) |
172 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) | 175 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) |
173 | 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 |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 RunTest("UMA"); | 327 RunTest("UMA"); |
325 } | 328 } |
326 | 329 |
327 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) | 330 TEST_PPAPI_IN_PROCESS(NetAddressPrivate) |
328 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) | 331 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate) |
329 | 332 |
330 // PPB_TCPSocket_Private currently isn't supported in-process. | 333 // PPB_TCPSocket_Private currently isn't supported in-process. |
331 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { | 334 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { |
332 RunTestViaHTTP("TCPSocketPrivate"); | 335 RunTestViaHTTP("TCPSocketPrivate"); |
333 } | 336 } |
OLD | NEW |