| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/test/ppapi/ppapi_test.h" | 5 #include "chrome/test/ppapi/ppapi_test.h" |
| 6 | 6 |
| 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 "chrome/browser/content_settings/host_content_settings_map.h" | 9 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1290 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetCrashData) | 1290 TEST_PPAPI_OUT_OF_PROCESS(Flash_SetCrashData) |
| 1291 // http://crbug.com/176822 | 1291 // http://crbug.com/176822 |
| 1292 #if !defined(OS_WIN) | 1292 #if !defined(OS_WIN) |
| 1293 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) | 1293 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) |
| 1294 #endif | 1294 #endif |
| 1295 TEST_PPAPI_OUT_OF_PROCESS(FlashFile) | 1295 TEST_PPAPI_OUT_OF_PROCESS(FlashFile) |
| 1296 // Mac/Aura reach NOTIMPLEMENTED/time out. | 1296 // Mac/Aura reach NOTIMPLEMENTED/time out. |
| 1297 // mac: http://crbug.com/96767 | 1297 // mac: http://crbug.com/96767 |
| 1298 // aura: http://crbug.com/104384 | 1298 // aura: http://crbug.com/104384 |
| 1299 // cros: http://crbug.com/396502 | 1299 // cros: http://crbug.com/396502 |
| 1300 #if defined(OS_MACOSX) || defined(OS_CHROMEOS) | 1300 // win debug: http://crbug.com/419644 |
| 1301 #if defined(OS_MACOSX) || defined(OS_CHROMEOS) || (defined(OS_WIN) && !defined(N
DEBUG)) |
| 1301 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen | 1302 #define MAYBE_FlashFullscreen DISABLED_FlashFullscreen |
| 1302 #else | 1303 #else |
| 1303 #define MAYBE_FlashFullscreen FlashFullscreen | 1304 #define MAYBE_FlashFullscreen FlashFullscreen |
| 1304 #endif | 1305 #endif |
| 1305 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) | 1306 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_FlashFullscreen) |
| 1306 | 1307 |
| 1307 TEST_PPAPI_OUT_OF_PROCESS(PDF) | 1308 TEST_PPAPI_OUT_OF_PROCESS(PDF) |
| 1308 | 1309 |
| 1309 // TODO(dalecurtis): Renable once the platform verification infobar has been | 1310 // TODO(dalecurtis): Renable once the platform verification infobar has been |
| 1310 // implemented; see http://crbug.com/270908 | 1311 // implemented; see http://crbug.com/270908 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1321 LIST_TEST(FlashDRM_GetHmonitor) | 1322 LIST_TEST(FlashDRM_GetHmonitor) |
| 1322 LIST_TEST(FlashDRM_GetVoucherFile)); | 1323 LIST_TEST(FlashDRM_GetVoucherFile)); |
| 1323 } | 1324 } |
| 1324 | 1325 |
| 1325 TEST_PPAPI_IN_PROCESS(TalkPrivate) | 1326 TEST_PPAPI_IN_PROCESS(TalkPrivate) |
| 1326 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) | 1327 TEST_PPAPI_OUT_OF_PROCESS(TalkPrivate) |
| 1327 | 1328 |
| 1328 #if defined(OS_CHROMEOS) | 1329 #if defined(OS_CHROMEOS) |
| 1329 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) | 1330 TEST_PPAPI_OUT_OF_PROCESS(OutputProtectionPrivate) |
| 1330 #endif | 1331 #endif |
| OLD | NEW |