Index: ui/gfx/rect_f.h |
diff --git a/ui/gfx/rect_f.h b/ui/gfx/rect_f.h |
index 4ee1098bf9c14bc3e3196567170f45e6bbd97ad1..ebe9db62429a826809a0de4bbd22b27d0cd1534b 100644 |
--- a/ui/gfx/rect_f.h |
+++ b/ui/gfx/rect_f.h |
@@ -10,13 +10,15 @@ |
#include "ui/gfx/point_f.h" |
#include "ui/gfx/rect_base.h" |
#include "ui/gfx/size_f.h" |
+#include "ui/gfx/vector2d_f.h" |
namespace gfx { |
class InsetsF; |
// A floating version of gfx::Rect. |
-class UI_EXPORT RectF : public RectBase<RectF, PointF, SizeF, InsetsF, float> { |
+class UI_EXPORT RectF |
+ : public RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, float> { |
public: |
RectF(); |
RectF(float width, float height); |
@@ -50,7 +52,7 @@ inline bool operator!=(const RectF& lhs, const RectF& rhs) { |
} |
#if !defined(COMPILER_MSVC) |
-extern template class RectBase<RectF, PointF, SizeF, InsetsF, float>; |
+extern template class RectBase<RectF, PointF, SizeF, InsetsF, Vector2dF, float>; |
#endif |
} // namespace gfx |