summaryrefslogtreecommitdiffstats
path: root/ui/gfx/point.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gfx/point.h')
-rw-r--r--ui/gfx/point.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gfx/point.h b/ui/gfx/point.h
index a872643..a290f59 100644
--- a/ui/gfx/point.h
+++ b/ui/gfx/point.h
@@ -10,7 +10,7 @@
#include <iosfwd>
-#include "ui/ui_api.h"
+#include "ui/base/ui_export.h"
#if defined(OS_WIN)
typedef unsigned long DWORD;
@@ -22,7 +22,7 @@ typedef struct tagPOINT POINT;
namespace gfx {
// A point has an x and y coordinate.
-class UI_API Point {
+class UI_EXPORT Point {
public:
Point();
Point(int x, int y);
@@ -96,7 +96,7 @@ class UI_API Point {
int y_;
};
-UI_API std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
+UI_EXPORT std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
} // namespace gfx