| 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/ui/ppapi_uitest.h" | 5 #include "chrome/test/ui/ppapi_uitest.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 DISABLED_Instance_RecursiveObjects) { | 535 DISABLED_Instance_RecursiveObjects) { |
| 536 RunTestAndReload("Instance_RecursiveObjects"); | 536 RunTestAndReload("Instance_RecursiveObjects"); |
| 537 } | 537 } |
| 538 TEST_PPAPI_IN_PROCESS(Instance_LeakedObjectDestructors); | 538 TEST_PPAPI_IN_PROCESS(Instance_LeakedObjectDestructors); |
| 539 TEST_PPAPI_OUT_OF_PROCESS(Instance_LeakedObjectDestructors); | 539 TEST_PPAPI_OUT_OF_PROCESS(Instance_LeakedObjectDestructors); |
| 540 // ScriptableObjects aren't supported in NaCl, so Instance_RecursiveObjects and | 540 // ScriptableObjects aren't supported in NaCl, so Instance_RecursiveObjects and |
| 541 // Instance_TestLeakedObjectDestructors don't make sense for NaCl. | 541 // Instance_TestLeakedObjectDestructors don't make sense for NaCl. |
| 542 | 542 |
| 543 TEST_PPAPI_IN_PROCESS(Graphics2D) | 543 TEST_PPAPI_IN_PROCESS(Graphics2D) |
| 544 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) | 544 TEST_PPAPI_OUT_OF_PROCESS(Graphics2D) |
| 545 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D) | 545 // Graphics2D_Dev isn't supported in NaCl, only test the other interfaces |
| 546 // TODO(jhorwich) Enable when Graphics2D_Dev interfaces are proxied in NaCl. |
| 547 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_InvalidResource) |
| 548 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_InvalidSize) |
| 549 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Humongous) |
| 550 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_InitToZero) |
| 551 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Describe) |
| 552 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Paint) |
| 553 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Scroll) |
| 554 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Replace) |
| 555 TEST_PPAPI_NACL_VIA_HTTP(Graphics2D_Flush) |
| 546 | 556 |
| 547 TEST_PPAPI_IN_PROCESS(ImageData) | 557 TEST_PPAPI_IN_PROCESS(ImageData) |
| 548 TEST_PPAPI_OUT_OF_PROCESS(ImageData) | 558 TEST_PPAPI_OUT_OF_PROCESS(ImageData) |
| 549 | 559 |
| 550 // PPAPINaClTest.ImageData times out consistently on all platforms. | 560 // PPAPINaClTest.ImageData times out consistently on all platforms. |
| 551 // http://crbug.com/130377 | 561 // http://crbug.com/130377 |
| 552 TEST_PPAPI_NACL_VIA_HTTP(DISABLED_ImageData) | 562 TEST_PPAPI_NACL_VIA_HTTP(DISABLED_ImageData) |
| 553 | 563 |
| 554 TEST_PPAPI_IN_PROCESS(BrowserFont) | 564 TEST_PPAPI_IN_PROCESS(BrowserFont) |
| 555 TEST_PPAPI_OUT_OF_PROCESS(BrowserFont) | 565 TEST_PPAPI_OUT_OF_PROCESS(BrowserFont) |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) | 1121 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) |
| 1112 | 1122 |
| 1113 TEST_PPAPI_IN_PROCESS(MouseCursor) | 1123 TEST_PPAPI_IN_PROCESS(MouseCursor) |
| 1114 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) | 1124 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) |
| 1115 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) | 1125 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) |
| 1116 | 1126 |
| 1117 // Only enabled in out-of-process mode. | 1127 // Only enabled in out-of-process mode. |
| 1118 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) | 1128 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) |
| 1119 | 1129 |
| 1120 #endif // ADDRESS_SANITIZER | 1130 #endif // ADDRESS_SANITIZER |
| OLD | NEW |