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