Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: Source/platform/geometry/IntPoint.h

Issue 68103014: Move some core/platform/graphics/mac files to geometry (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Export IntSize/IntPoint Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/geometry/IntSize.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/geometry/IntPoint.h
diff --git a/Source/platform/geometry/IntPoint.h b/Source/platform/geometry/IntPoint.h
index 944fc3257f616eb300796be510e78df8827c1a8a..6d4d3f9a5466b811f06aa392bfb9bf204e2b7f44 100644
--- a/Source/platform/geometry/IntPoint.h
+++ b/Source/platform/geometry/IntPoint.h
@@ -41,7 +41,7 @@ typedef struct _NSPoint NSPoint;
namespace WebCore {
-class IntPoint {
+class PLATFORM_EXPORT IntPoint {
public:
IntPoint() : m_x(0), m_y(0) { }
IntPoint(int x, int y) : m_x(x), m_y(y) { }
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/geometry/IntSize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698