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

Unified Diff: public/platform/WebFloatRect.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/WebFloatQuad.h ('k') | public/platform/WebFloatSize.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebFloatRect.h
diff --git a/public/platform/WebFloatRect.h b/public/platform/WebFloatRect.h
index 9402c166da718fa682d528e0795ba9cfca9c2b54..3127044f9c6db5e3f1df72fe93e97010674e7586 100644
--- a/public/platform/WebFloatRect.h
+++ b/public/platform/WebFloatRect.h
@@ -68,7 +68,7 @@ struct WebFloatRect {
}
#if INSIDE_BLINK
- WebFloatRect(const WebCore::FloatRect& r)
+ WebFloatRect(const blink::FloatRect& r)
: x(r.x())
, y(r.y())
, width(r.width())
@@ -76,7 +76,7 @@ struct WebFloatRect {
{
}
- WebFloatRect& operator=(const WebCore::FloatRect& r)
+ WebFloatRect& operator=(const blink::FloatRect& r)
{
x = r.x();
y = r.y();
@@ -85,9 +85,9 @@ struct WebFloatRect {
return *this;
}
- operator WebCore::FloatRect() const
+ operator blink::FloatRect() const
{
- return WebCore::FloatRect(x, y, width, height);
+ return blink::FloatRect(x, y, width, height);
}
#else
WebFloatRect(const gfx::RectF& r)
« no previous file with comments | « public/platform/WebFloatQuad.h ('k') | public/platform/WebFloatSize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698