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

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

Powered by Google App Engine
This is Rietveld 408576698