Index: ui/events/keycodes/keyboard_code_conversion_gtk.h |
diff --git a/ui/events/keycodes/keyboard_code_conversion_gtk.h b/ui/events/keycodes/keyboard_code_conversion_gtk.h |
index c9b6a8dd63bd41351b8c41146f1c0a9d0e02fefc..6258f4116c1ec9a436e64eabc9caedb3a6e59bfd 100644 |
--- a/ui/events/keycodes/keyboard_code_conversion_gtk.h |
+++ b/ui/events/keycodes/keyboard_code_conversion_gtk.h |
@@ -36,21 +36,22 @@ |
#ifndef UI_EVENTS_KEYCODES_KEYBOARD_CODE_CONVERSION_GTK_H_ |
#define UI_EVENTS_KEYCODES_KEYBOARD_CODE_CONVERSION_GTK_H_ |
-#include "ui/events/events_export.h" |
+#include "ui/events/events_base_export.h" |
#include "ui/events/keycodes/keyboard_codes_posix.h" |
typedef struct _GdkEventKey GdkEventKey; |
namespace ui { |
-EVENTS_EXPORT KeyboardCode WindowsKeyCodeForGdkKeyCode(int keycode); |
+EVENTS_BASE_EXPORT KeyboardCode WindowsKeyCodeForGdkKeyCode(int keycode); |
-EVENTS_EXPORT int GdkKeyCodeForWindowsKeyCode(KeyboardCode keycode, bool shift); |
+EVENTS_BASE_EXPORT int GdkKeyCodeForWindowsKeyCode(KeyboardCode keycode, |
+ bool shift); |
// For WebKit DRT testing: simulate the native keycode for the given |
// input |keycode|. Return the native keycode. |
-EVENTS_EXPORT int GdkNativeKeyCodeForWindowsKeyCode(KeyboardCode keycode, |
- bool shift); |
+EVENTS_BASE_EXPORT int GdkNativeKeyCodeForWindowsKeyCode(KeyboardCode keycode, |
+ bool shift); |
} // namespace ui |