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() {} |