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

Unified Diff: Source/platform/geometry/IntSize.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/geometry/IntPoint.h ('k') | Source/platform/geometry/cg/FloatPointCG.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/geometry/IntSize.h
diff --git a/Source/platform/geometry/IntSize.h b/Source/platform/geometry/IntSize.h
index c9a3b78234640c71eac8a75eea1c54342bb95be6..8b7a582ffe5c5df0e901427f7931823bc1469414 100644
--- a/Source/platform/geometry/IntSize.h
+++ b/Source/platform/geometry/IntSize.h
@@ -41,7 +41,7 @@ typedef struct _NSSize NSSize;
namespace WebCore {
-class IntSize {
+class PLATFORM_EXPORT IntSize {
public:
IntSize() : m_width(0), m_height(0) { }
IntSize(int width, int height) : m_width(width), m_height(height) { }
« no previous file with comments | « Source/platform/geometry/IntPoint.h ('k') | Source/platform/geometry/cg/FloatPointCG.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698