Index: public/platform/WebFloatPoint3D.h |
diff --git a/public/platform/WebFloatPoint3D.h b/public/platform/WebFloatPoint3D.h |
index 9194890e4f7c2583d20fbd5006697cbf2861ae3d..6dc4dcaeb9d4245d9b683b041b74d1b48e211491 100644 |
--- a/public/platform/WebFloatPoint3D.h |
+++ b/public/platform/WebFloatPoint3D.h |
@@ -36,14 +36,14 @@ struct WebFloatPoint3D { |
} |
#if INSIDE_BLINK |
- WebFloatPoint3D(const WebCore::FloatPoint3D& p) |
+ WebFloatPoint3D(const blink::FloatPoint3D& p) |
: x(p.x()) |
, y(p.y()) |
, z(p.z()) |
{ |
} |
- WebFloatPoint3D& operator=(const WebCore::FloatPoint3D& p) |
+ WebFloatPoint3D& operator=(const blink::FloatPoint3D& p) |
{ |
x = p.x(); |
y = p.y(); |
@@ -51,9 +51,9 @@ struct WebFloatPoint3D { |
return *this; |
} |
- operator WebCore::FloatPoint3D() const |
+ operator blink::FloatPoint3D() const |
{ |
- return WebCore::FloatPoint3D(x, y, z); |
+ return blink::FloatPoint3D(x, y, z); |
} |
#else |
WebFloatPoint3D(const gfx::Point3F& p) |