Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Side by Side Diff: chrome/test/ui/ppapi_uitest.cc

Issue 9814015: Add new MouseCursor interface for setting the mouse cursor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/api/ppb_mouse_cursor.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/path_service.h" 9 #include "base/path_service.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 // See bug for history. 437 // See bug for history.
438 #if !defined(ADDRESS_SANITIZER) 438 #if !defined(ADDRESS_SANITIZER)
439 439
440 TEST_PPAPI_IN_PROCESS(Broker) 440 TEST_PPAPI_IN_PROCESS(Broker)
441 // Flaky, http://crbug.com/111355 441 // Flaky, http://crbug.com/111355
442 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker) 442 TEST_PPAPI_OUT_OF_PROCESS(DISABLED_Broker)
443 443
444 TEST_PPAPI_IN_PROCESS(Core) 444 TEST_PPAPI_IN_PROCESS(Core)
445 TEST_PPAPI_OUT_OF_PROCESS(Core) 445 TEST_PPAPI_OUT_OF_PROCESS(Core)
446 446
447 // Times out on Linux. http://crbug.com/108180
448 #if defined(OS_LINUX)
449 #define MAYBE_CursorControl DISABLED_CursorControl
450 #else
451 #define MAYBE_CursorControl CursorControl
452 #endif
453
454 TEST_PPAPI_IN_PROCESS(MAYBE_CursorControl)
455 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_CursorControl)
456 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_CursorControl)
457
458 // Times out on Linux. http://crbug.com/108859 447 // Times out on Linux. http://crbug.com/108859
459 #if defined(OS_LINUX) 448 #if defined(OS_LINUX)
460 #define MAYBE_InputEvent DISABLED_InputEvent 449 #define MAYBE_InputEvent DISABLED_InputEvent
461 #elif defined(OS_MACOSX) 450 #elif defined(OS_MACOSX)
462 // Flaky on Mac. http://crbug.com/109258 451 // Flaky on Mac. http://crbug.com/109258
463 #define MAYBE_InputEvent DISABLED_InputEvent 452 #define MAYBE_InputEvent DISABLED_InputEvent
464 #else 453 #else
465 #define MAYBE_InputEvent InputEvent 454 #define MAYBE_InputEvent InputEvent
466 #endif 455 #endif
467 456
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) 1021 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics)
1033 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) 1022 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess)
1034 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) 1023 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray)
1035 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) 1024 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement)
1036 1025
1037 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) 1026 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics)
1038 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) 1027 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit)
1039 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) 1028 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics)
1040 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) 1029 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit)
1041 1030
1031 TEST_PPAPI_IN_PROCESS(MouseCursor)
1032 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor)
1033 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor)
1034
1042 #endif // ADDRESS_SANITIZER 1035 #endif // ADDRESS_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/ppb_mouse_cursor.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698