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

Unified Diff: webkit/compositor_bindings/webcore_convert.cc

Issue 11369051: cc: Remove WebCore::FloatRect use from the compositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
« cc/occlusion_tracker.cc ('K') | « webkit/compositor_bindings/webcore_convert.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/webcore_convert.cc
diff --git a/webkit/compositor_bindings/webcore_convert.cc b/webkit/compositor_bindings/webcore_convert.cc
index 50fd9010f5bf964be518557fca4bc6551af3e752..e8033d3eb8713f5d68bf04bf4025aa353caa6fd8 100644
--- a/webkit/compositor_bindings/webcore_convert.cc
+++ b/webkit/compositor_bindings/webcore_convert.cc
@@ -8,11 +8,6 @@
namespace WebKit {
-WebCore::FloatRect convert(const WebFloatRect& rect)
-{
- return WebCore::FloatRect(rect.x, rect.y, rect.width, rect.height);
-}
-
WebCore::FloatPoint convert(const WebFloatPoint& point)
{
return WebCore::FloatPoint(point.x, point.y);
« cc/occlusion_tracker.cc ('K') | « webkit/compositor_bindings/webcore_convert.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698