diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 02:16:21 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-18 02:16:21 +0000 |
commit | 22cdd93852c8f0782cb86b066cfcd95a9121912b (patch) | |
tree | be0f742437de0f4bd0e9753270c22998d02fd947 /chrome/test/automation/automation_constants.h | |
parent | d3eb7bb27945410cb5d1f5d84f15f9c7017d519e (diff) | |
download | chromium_src-22cdd93852c8f0782cb86b066cfcd95a9121912b.zip chromium_src-22cdd93852c8f0782cb86b066cfcd95a9121912b.tar.gz chromium_src-22cdd93852c8f0782cb86b066cfcd95a9121912b.tar.bz2 |
more linux automation porting: SendKeyPressNotifyWhenDone
also change the interface for SimulateOSKeyPress()/SendKeyPress() to take a VKEY_ value (defined in base/keyboard_codes.h) rather than a VK_ value.
BUG=19076
Review URL: http://codereview.chromium.org/171079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/automation_constants.h')
-rw-r--r-- | chrome/test/automation/automation_constants.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/chrome/test/automation/automation_constants.h b/chrome/test/automation/automation_constants.h index 1972ea8..6d0a034 100644 --- a/chrome/test/automation/automation_constants.h +++ b/chrome/test/automation/automation_constants.h @@ -25,20 +25,4 @@ enum AutomationMsg_NavigationResponseValues { AUTOMATION_MSG_NAVIGATION_AUTH_NEEDED, }; -#if !defined(OS_WIN) - -// WebKit defines a larger set of these in -// WebKit/WebCore/platform/KeyboardCodes.h but I don't think we want to include -// that from here, and besides we only care about a subset of those. -const int VK_TAB = 0x09; -const int VK_RETURN = 0x0D; -const int VK_ESCAPE = 0x1B; -const int VK_SPACE = 0x20; -const int VK_PRIOR = 0x21; -const int VK_NEXT = 0x22; -const int VK_UP = 0x26; -const int VK_DOWN = 0x28; - -#endif // !defined(OS_WIN) - #endif // CHROME_TEST_AUTOMATION_AUTOMATION_CONSTANTS_H_ |