Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1855)

Unified Diff: public/platform/WebFloatPoint3D.h

Issue 401973003: Rename WebCore namespace to blink in Public (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/platform/WebFloatPoint.h ('k') | public/platform/WebFloatQuad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « public/platform/WebFloatPoint.h ('k') | public/platform/WebFloatQuad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698