| Index: public/platform/WebRect.h
|
| diff --git a/public/platform/WebRect.h b/public/platform/WebRect.h
|
| index 440e168d5a4fe9a48bb050dcfb7ca5a953a504de..47a15f8e49ec8818c57910e9e2e51621d8c0afbb 100644
|
| --- a/public/platform/WebRect.h
|
| +++ b/public/platform/WebRect.h
|
| @@ -68,7 +68,7 @@ struct WebRect {
|
| }
|
|
|
| #if INSIDE_BLINK
|
| - WebRect(const WebCore::IntRect& r)
|
| + WebRect(const blink::IntRect& r)
|
| : x(r.x())
|
| , y(r.y())
|
| , width(r.width())
|
| @@ -76,7 +76,7 @@ struct WebRect {
|
| {
|
| }
|
|
|
| - WebRect& operator=(const WebCore::IntRect& r)
|
| + WebRect& operator=(const blink::IntRect& r)
|
| {
|
| x = r.x();
|
| y = r.y();
|
| @@ -85,9 +85,9 @@ struct WebRect {
|
| return *this;
|
| }
|
|
|
| - operator WebCore::IntRect() const
|
| + operator blink::IntRect() const
|
| {
|
| - return WebCore::IntRect(x, y, width, height);
|
| + return blink::IntRect(x, y, width, height);
|
| }
|
| #else
|
| WebRect(const gfx::Rect& r)
|
|
|