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

Unified Diff: content/public/browser/keyboard_listener.h

Issue 9969080: Remove TOOLKIT_USES_GTK (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add gtk dependency to android linux host Created 8 years, 9 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
Index: content/public/browser/keyboard_listener.h
diff --git a/content/public/browser/keyboard_listener.h b/content/public/browser/keyboard_listener.h
index 45e8a860335bcb25c419fe3fd25eb6918c9fcd68..26e24f35ecbfe72cb9f81db9a4970ebdf1fe6c62 100644
--- a/content/public/browser/keyboard_listener.h
+++ b/content/public/browser/keyboard_listener.h
@@ -8,15 +8,15 @@
#include "content/common/content_export.h"
-#if defined(TOOLKIT_USES_GTK)
+#if defined(TOOLKIT_GTK)
typedef struct _GdkEventKey GdkEventKey;
-#endif // defined(TOOLKIT_USES_GTK)
+#endif // defined(TOOLKIT_GTK)
class CONTENT_EXPORT KeyboardListener {
public:
-#if defined(TOOLKIT_USES_GTK)
+#if defined(TOOLKIT_GTK)
virtual bool HandleKeyPressEvent(GdkEventKey* event) = 0;
-#endif // defined(TOOLKIT_USES_GTK)
+#endif // defined(TOOLKIT_GTK)
protected:
virtual ~KeyboardListener() {}
« no previous file with comments | « content/port/browser/render_widget_host_view_port.h ('k') | content/public/browser/native_web_keyboard_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698