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

Unified Diff: views/event.h

Issue 1701006: Implement UI automation on the Mac.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/ui_test_utils_mac.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/event.h
===================================================================
--- views/event.h (revision 45975)
+++ views/event.h (working copy)
@@ -46,13 +46,18 @@
ET_MOUSEWHEEL,
ET_DROP_TARGET_EVENT };
- // Event flags currently supported
+ // Event flags currently supported. Although this is a "views"
+ // file, this header is used on non-views platforms (e.g. OSX). For
+ // example, these EventFlags are used by the automation provider for
+ // all platforms.
enum EventFlags { EF_SHIFT_DOWN = 1 << 0,
EF_CONTROL_DOWN = 1 << 1,
EF_ALT_DOWN = 1 << 2,
EF_LEFT_BUTTON_DOWN = 1 << 3,
EF_MIDDLE_BUTTON_DOWN = 1 << 4,
- EF_RIGHT_BUTTON_DOWN = 1 << 5 };
+ EF_RIGHT_BUTTON_DOWN = 1 << 5,
+ EF_COMMAND_DOWN = 1 << 6, // Only useful on OSX
+ };
// Return the event type
EventType GetType() const {
« no previous file with comments | « chrome/test/ui_test_utils_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698