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

Unified Diff: chrome/common/native_web_keyboard_event.h

Issue 100046: More linux ifdef tweaks. This reverts my earlier change (13503).... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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/common/gfx/path.h ('k') | chrome/common/resource_bundle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/native_web_keyboard_event.h
===================================================================
--- chrome/common/native_web_keyboard_event.h (revision 14606)
+++ chrome/common/native_web_keyboard_event.h (working copy)
@@ -16,7 +16,7 @@
#else
class NSEvent;
#endif // __OBJC__
-#elif defined(TOOLKIT_GTK)
+#elif defined(OS_LINUX)
#include <gdk/gdk.h>
#endif
@@ -29,7 +29,7 @@
NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);
#elif defined(OS_MACOSX)
explicit NativeWebKeyboardEvent(NSEvent *event);
-#elif defined(TOOLKIT_GTK)
+#elif defined(OS_LINUX)
explicit NativeWebKeyboardEvent(const GdkEventKey* event);
#endif
@@ -42,7 +42,7 @@
MSG os_event;
#elif defined(OS_MACOSX)
NSEvent* os_event;
-#elif defined(TOOLKIT_GTK)
+#elif defined(OS_LINUX)
GdkEventKey* os_event;
#endif
};
« no previous file with comments | « chrome/common/gfx/path.h ('k') | chrome/common/resource_bundle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698