Index: ui/base/gtk/event_synthesis_gtk.h |
diff --git a/ui/base/gtk/event_synthesis_gtk.h b/ui/base/gtk/event_synthesis_gtk.h |
index 1839e29949a2fb2224e06b4fa5b0db4ad6897cd2..0994f9fe7270ba96d3318efb7a11a0467f90d499 100644 |
--- a/ui/base/gtk/event_synthesis_gtk.h |
+++ b/ui/base/gtk/event_synthesis_gtk.h |
@@ -13,24 +13,25 @@ |
#include <gdk/gdkkeysyms.h> |
#include <vector> |
-#include "ui/base/ui_export.h" |
+#include "ui/base/ui_base_export.h" |
#include "ui/events/keycodes/keyboard_codes.h" |
namespace ui { |
// Creates and returns a key event. Passes ownership to the caller. |
-UI_EXPORT GdkEvent* SynthesizeKeyEvent(GdkWindow* event_window, |
- bool press, |
- guint gdk_key, |
- guint state); |
+UI_BASE_EXPORT GdkEvent* SynthesizeKeyEvent(GdkWindow* event_window, |
+ bool press, |
+ guint gdk_key, |
+ guint state); |
// Creates the proper sequence of key events for a key press + release. |
// Ownership of the events in the vector is passed to the caller. |
-UI_EXPORT void SynthesizeKeyPressEvents( |
- GdkWindow* window, |
- KeyboardCode key, |
- bool control, bool shift, bool alt, |
- std::vector<GdkEvent*>* events); |
+UI_BASE_EXPORT void SynthesizeKeyPressEvents(GdkWindow* window, |
+ KeyboardCode key, |
+ bool control, |
+ bool shift, |
+ bool alt, |
+ std::vector<GdkEvent*>* events); |
} // namespace ui |