Index: third_party/WebKit/Source/platform/geometry/FloatBox.h |
diff --git a/third_party/WebKit/Source/platform/geometry/FloatBox.h b/third_party/WebKit/Source/platform/geometry/FloatBox.h |
index bc2951eeb4231e60143bb53a7b79916ca8482600..f363e488446239b220dfb6df3565e963d0351365 100644 |
--- a/third_party/WebKit/Source/platform/geometry/FloatBox.h |
+++ b/third_party/WebKit/Source/platform/geometry/FloatBox.h |
@@ -30,6 +30,7 @@ |
#ifndef FloatBox_h |
#define FloatBox_h |
+#include "platform/PlatformExport.h" |
#include "platform/geometry/FloatPoint3D.h" |
#include "wtf/Allocator.h" |
#include <algorithm> |
@@ -38,7 +39,7 @@ |
namespace blink { |
-class FloatBox { |
+class PLATFORM_EXPORT FloatBox { |
DISALLOW_NEW(); |
public: |
FloatBox() |
@@ -159,6 +160,9 @@ public: |
float width() const { return m_width; } |
float height() const { return m_height; } |
float depth() const { return m_depth; } |
+ |
+ String toString() const; |
+ |
private: |
float m_x; |
float m_y; |