Index: ui/base/gtk/gtk_screen_util.h |
diff --git a/ui/base/gtk/gtk_screen_util.h b/ui/base/gtk/gtk_screen_util.h |
index b916cf238afd24cfea6e7c2fbdcfc7193a0ce1a3..c3a7f2c4ab9afe6cb33b900da20ad1f9ab6b0203 100644 |
--- a/ui/base/gtk/gtk_screen_util.h |
+++ b/ui/base/gtk/gtk_screen_util.h |
@@ -7,7 +7,7 @@ |
#include <gtk/gtk.h> |
-#include "ui/base/ui_export.h" |
+#include "ui/base/ui_base_export.h" |
#include "ui/gfx/point.h" |
#include "ui/gfx/rect.h" |
#include "ui/gfx/vector2d.h" |
@@ -15,19 +15,19 @@ |
namespace ui { |
// Returns true if the screen is composited, false otherwise. |
-UI_EXPORT bool IsScreenComposited(); |
+UI_BASE_EXPORT bool IsScreenComposited(); |
// Get the current location of the mouse cursor relative to the screen. |
-UI_EXPORT gfx::Point ScreenPoint(GtkWidget* widget); |
+UI_BASE_EXPORT gfx::Point ScreenPoint(GtkWidget* widget); |
// Get the current location of the mouse cursor relative to the widget. |
-UI_EXPORT gfx::Point ClientPoint(GtkWidget* widget); |
+UI_BASE_EXPORT gfx::Point ClientPoint(GtkWidget* widget); |
// Gets the offset of a gtk widget from the origin in screen coordinates. |
-UI_EXPORT gfx::Vector2d GetWidgetScreenOffset(GtkWidget* widget); |
+UI_BASE_EXPORT gfx::Vector2d GetWidgetScreenOffset(GtkWidget* widget); |
// Returns the bounds of the specified widget in screen coordinates. |
-UI_EXPORT gfx::Rect GetWidgetScreenBounds(GtkWidget* widget); |
+UI_BASE_EXPORT gfx::Rect GetWidgetScreenBounds(GtkWidget* widget); |
} // namespace ui |