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

Unified Diff: cc/stubs/int_size.h

Issue 10984053: cc: Use ui/gfx geometry types for the CCRenderPass and CCDrawQuad classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 2 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 | « cc/stubs/int_rect.h ('k') | cc/test/geometry_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/stubs/int_size.h
diff --git a/cc/stubs/int_size.h b/cc/stubs/int_size.h
index c53f4f155dd6667c239d4da0eca87c8f5d19e6ad..8b75f1ee43e7c47874268fd71a0764706cf7ab05 100644
--- a/cc/stubs/int_size.h
+++ b/cc/stubs/int_size.h
@@ -10,6 +10,7 @@
#else
#include "third_party/WebKit/Source/WebCore/platform/graphics/IntSize.h"
#endif
+#include "ui/gfx/size.h"
namespace cc {
@@ -27,6 +28,13 @@ public:
{
}
+
+ explicit IntSize(gfx::Size size)
+ : WebCore::IntSize(size.width(), size.height())
+ {
+ }
+
+ operator gfx::Size() const { return gfx::Size(width(), height()); }
};
}
« no previous file with comments | « cc/stubs/int_rect.h ('k') | cc/test/geometry_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698