| Index: ui/gfx/rect_f.h
|
| diff --git a/ui/gfx/rect_f.h b/ui/gfx/rect_f.h
|
| index 4ee1098bf9c14bc3e3196567170f45e6bbd97ad1..46d1c68b6f52bf870d6821237e2e76622a54b423 100644
|
| --- a/ui/gfx/rect_f.h
|
| +++ b/ui/gfx/rect_f.h
|
| @@ -16,7 +16,8 @@ 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 +51,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
|
|
|