Index: public/platform/WebSize.h |
diff --git a/public/platform/WebSize.h b/public/platform/WebSize.h |
index f54cdb2abd25dd5ef36c5e216e16c6f700fc649b..057414edf22aec53f4abf95ded352bf519f6a390 100644 |
--- a/public/platform/WebSize.h |
+++ b/public/platform/WebSize.h |
@@ -63,22 +63,22 @@ struct WebSize { |
} |
#if INSIDE_BLINK |
- WebSize(const WebCore::IntSize& s) |
+ WebSize(const blink::IntSize& s) |
: width(s.width()) |
, height(s.height()) |
{ |
} |
- WebSize& operator=(const WebCore::IntSize& s) |
+ WebSize& operator=(const blink::IntSize& s) |
{ |
width = s.width(); |
height = s.height(); |
return *this; |
} |
- operator WebCore::IntSize() const |
+ operator blink::IntSize() const |
{ |
- return WebCore::IntSize(width, height); |
+ return blink::IntSize(width, height); |
} |
#else |
WebSize(const gfx::Size& s) |