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

Unified Diff: public/platform/WebFloatQuad.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/WebFloatPoint3D.h ('k') | public/platform/WebFloatRect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebFloatQuad.h
diff --git a/public/platform/WebFloatQuad.h b/public/platform/WebFloatQuad.h
index bffbabd1668e4b3dbe63f6615ff59688e59b0014..98cff1199916dfaa7ec31385788948710ccc669c 100644
--- a/public/platform/WebFloatQuad.h
+++ b/public/platform/WebFloatQuad.h
@@ -62,7 +62,7 @@ struct WebFloatQuad {
BLINK_PLATFORM_EXPORT WebRect enclosingRect() const;
#if INSIDE_BLINK
- WebFloatQuad& operator=(const WebCore::FloatQuad& q)
+ WebFloatQuad& operator=(const blink::FloatQuad& q)
{
p[0] = q.p1();
p[1] = q.p2();
@@ -70,7 +70,7 @@ struct WebFloatQuad {
p[3] = q.p4();
return *this;
}
- WebFloatQuad(const WebCore::FloatQuad& q)
+ WebFloatQuad(const blink::FloatQuad& q)
{
*this = q;
}
« no previous file with comments | « public/platform/WebFloatPoint3D.h ('k') | public/platform/WebFloatRect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698