| Index: ui/gfx/point.h
|
| ===================================================================
|
| --- ui/gfx/point.h (revision 92815)
|
| +++ ui/gfx/point.h (working copy)
|
| @@ -10,6 +10,8 @@
|
|
|
| #include <iosfwd>
|
|
|
| +#include "ui/ui_api.h"
|
| +
|
| #if defined(OS_WIN)
|
| typedef unsigned long DWORD;
|
| typedef struct tagPOINT POINT;
|
| @@ -20,7 +22,7 @@
|
| namespace gfx {
|
|
|
| // A point has an x and y coordinate.
|
| -class Point {
|
| +class UI_API Point {
|
| public:
|
| Point();
|
| Point(int x, int y);
|
| @@ -94,7 +96,7 @@
|
| int y_;
|
| };
|
|
|
| -std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
|
| +UI_API std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
|
|
|
| } // namespace gfx
|
|
|
|
|