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

Unified Diff: public/platform/WebFloatPoint.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/WebFileSystemCallbacks.h ('k') | public/platform/WebFloatPoint3D.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebFloatPoint.h
diff --git a/public/platform/WebFloatPoint.h b/public/platform/WebFloatPoint.h
index bd477d8c6da92f6cbe79e3cbb9da153e8ad3098c..4dbd1473140f8cc928016a55c98274d60b818f4b 100644
--- a/public/platform/WebFloatPoint.h
+++ b/public/platform/WebFloatPoint.h
@@ -58,22 +58,22 @@ struct WebFloatPoint {
}
#if INSIDE_BLINK
- WebFloatPoint(const WebCore::FloatPoint& p)
+ WebFloatPoint(const blink::FloatPoint& p)
: x(p.x())
, y(p.y())
{
}
- WebFloatPoint& operator=(const WebCore::FloatPoint& p)
+ WebFloatPoint& operator=(const blink::FloatPoint& p)
{
x = p.x();
y = p.y();
return *this;
}
- operator WebCore::FloatPoint() const
+ operator blink::FloatPoint() const
{
- return WebCore::FloatPoint(x, y);
+ return blink::FloatPoint(x, y);
}
#else
WebFloatPoint(const gfx::PointF& p)
« no previous file with comments | « public/platform/WebFileSystemCallbacks.h ('k') | public/platform/WebFloatPoint3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698