| Index: ui/gfx/point_f.h
|
| diff --git a/ui/gfx/point_f.h b/ui/gfx/point_f.h
|
| index d9fc18cbbccad632d8591166b90058a3271c0033..664c18d8aa0bbbc67130909f55f662e2fcf25b6f 100644
|
| --- a/ui/gfx/point_f.h
|
| +++ b/ui/gfx/point_f.h
|
| @@ -14,7 +14,7 @@
|
| namespace gfx {
|
|
|
| // A floating version of gfx::Point.
|
| -class UI_EXPORT PointF : public PointBase<PointF, float, Vector2dF> {
|
| +class GFX_EXPORT PointF : public PointBase<PointF, float, Vector2dF> {
|
| public:
|
| PointF() : PointBase<PointF, float, Vector2dF>(0, 0) {}
|
| PointF(float x, float y) : PointBase<PointF, float, Vector2dF>(x, y) {}
|
| @@ -60,7 +60,7 @@ inline PointF PointAtOffsetFromOrigin(const Vector2dF& offset_from_origin) {
|
| return PointF(offset_from_origin.x(), offset_from_origin.y());
|
| }
|
|
|
| -UI_EXPORT PointF ScalePoint(const PointF& p, float x_scale, float y_scale);
|
| +GFX_EXPORT PointF ScalePoint(const PointF& p, float x_scale, float y_scale);
|
|
|
| inline PointF ScalePoint(const PointF& p, float scale) {
|
| return ScalePoint(p, scale, scale);
|
|
|