| Index: public/platform/WebFloatPoint.h
|
| diff --git a/public/platform/WebFloatPoint.h b/public/platform/WebFloatPoint.h
|
| index 09578f23ad1ebf279fad9d17eb24052534e5271c..0734635e1e432d3ccc673eb128df17304091e6e8 100644
|
| --- a/public/platform/WebFloatPoint.h
|
| +++ b/public/platform/WebFloatPoint.h
|
| @@ -58,22 +58,22 @@ struct WebFloatPoint {
|
| }
|
|
|
| #if INSIDE_BLINK
|
| - WebFloatPoint(const blink::FloatPoint& p)
|
| + WebFloatPoint(const FloatPoint& p)
|
| : x(p.x())
|
| , y(p.y())
|
| {
|
| }
|
|
|
| - WebFloatPoint& operator=(const blink::FloatPoint& p)
|
| + WebFloatPoint& operator=(const FloatPoint& p)
|
| {
|
| x = p.x();
|
| y = p.y();
|
| return *this;
|
| }
|
|
|
| - operator blink::FloatPoint() const
|
| + operator FloatPoint() const
|
| {
|
| - return blink::FloatPoint(x, y);
|
| + return FloatPoint(x, y);
|
| }
|
| #else
|
| WebFloatPoint(const gfx::PointF& p)
|
|
|