Index: public/platform/WebFloatSize.h |
diff --git a/public/platform/WebFloatSize.h b/public/platform/WebFloatSize.h |
index 72cfc7d1ad7fe1d52627d162101b4d972ca1c9e6..fbceb6c883b4e244c45167e63b4c1b4bd76ce940 100644 |
--- a/public/platform/WebFloatSize.h |
+++ b/public/platform/WebFloatSize.h |
@@ -64,22 +64,22 @@ struct WebFloatSize { |
} |
#if INSIDE_BLINK |
- WebFloatSize(const WebCore::FloatSize& s) |
+ WebFloatSize(const blink::FloatSize& s) |
: width(s.width()) |
, height(s.height()) |
{ |
} |
- WebFloatSize& operator=(const WebCore::FloatSize& s) |
+ WebFloatSize& operator=(const blink::FloatSize& s) |
{ |
width = s.width(); |
height = s.height(); |
return *this; |
} |
- operator WebCore::FloatSize() const |
+ operator blink::FloatSize() const |
{ |
- return WebCore::FloatSize(width, height); |
+ return blink::FloatSize(width, height); |
} |
#else |
WebFloatSize(const gfx::SizeF& s) |