| Index: public/platform/WebPoint.h
|
| diff --git a/public/platform/WebPoint.h b/public/platform/WebPoint.h
|
| index 7424072f9ae02bd46211715d15093510809c357c..69d384f8b7c42c4ca293d0ca118e0c519fa12992 100644
|
| --- a/public/platform/WebPoint.h
|
| +++ b/public/platform/WebPoint.h
|
| @@ -58,22 +58,22 @@ struct WebPoint {
|
| }
|
|
|
| #if INSIDE_BLINK
|
| - WebPoint(const WebCore::IntPoint& p)
|
| + WebPoint(const blink::IntPoint& p)
|
| : x(p.x())
|
| , y(p.y())
|
| {
|
| }
|
|
|
| - WebPoint& operator=(const WebCore::IntPoint& p)
|
| + WebPoint& operator=(const blink::IntPoint& p)
|
| {
|
| x = p.x();
|
| y = p.y();
|
| return *this;
|
| }
|
|
|
| - operator WebCore::IntPoint() const
|
| + operator blink::IntPoint() const
|
| {
|
| - return WebCore::IntPoint(x, y);
|
| + return blink::IntPoint(x, y);
|
| }
|
| #else
|
| WebPoint(const gfx::Point& p)
|
|
|