diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 22:53:37 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 22:53:37 +0000 |
commit | 148d105e27c7c8c2cda0c81292690b9edafcae1f (patch) | |
tree | e278052fc84a6e5399aec5bd0d423162aecb6d16 /base/keyboard_codes.h | |
parent | dc75d4823b598a9b9b313728a06f6b47d6a73929 (diff) | |
download | chromium_src-148d105e27c7c8c2cda0c81292690b9edafcae1f.zip chromium_src-148d105e27c7c8c2cda0c81292690b9edafcae1f.tar.gz chromium_src-148d105e27c7c8c2cda0c81292690b9edafcae1f.tar.bz2 |
This CL adds accelerators to the Linux toolkit views.
The MessageLoop had to be modified to support Dispatchers on Linux.
BUG=None
TEST=On Windows and Linux, make sure the accelerators still work as expected. On Linux toolkit views, build and run the unit-tests.
Review URL: http://codereview.chromium.org/159046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22210 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/keyboard_codes.h')
-rw-r--r-- | base/keyboard_codes.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/base/keyboard_codes.h b/base/keyboard_codes.h index 2f66ac1..3d8700f 100644 --- a/base/keyboard_codes.h +++ b/base/keyboard_codes.h @@ -9,8 +9,10 @@ #if defined(OS_WIN) #include "base/keyboard_codes_win.h" -#elif defined(OS_POSIX) -#include "base/keyboard_codes_posix.h" +#elif defined(OS_LINUX) +#include "base/keyboard_codes_linux.h" +#elif defined(OS_MACOSX) +#include "base/keyboard_codes_mac.h" #endif #endif // BASE_KEYBOARD_CODES_H_ |