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

Unified Diff: base/keyboard_codes.h

Issue 235025: Use windows keycodes under linux (and all non-windows platforms). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | « base/keyboard_code_conversion_gtk.cc ('k') | base/keyboard_codes_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/keyboard_codes.h
===================================================================
--- base/keyboard_codes.h (revision 27238)
+++ base/keyboard_codes.h (working copy)
@@ -9,10 +9,8 @@
#if defined(OS_WIN)
#include "base/keyboard_codes_win.h"
-#elif defined(USE_X11)
-#include "base/keyboard_codes_linux.h"
-#elif defined(OS_MACOSX)
-#include "base/keyboard_codes_mac.h"
+#elif defined(USE_X11) || defined(OS_MACOSX)
+#include "base/keyboard_codes_posix.h"
#endif
#endif // BASE_KEYBOARD_CODES_H_
« no previous file with comments | « base/keyboard_code_conversion_gtk.cc ('k') | base/keyboard_codes_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698