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

Unified Diff: cc/draw_quad_unittest.cc

Issue 11358050: Remove most remaining webcore points and sizes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebasedd 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
« no previous file with comments | « cc/animation_curve.h ('k') | cc/gl_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/draw_quad_unittest.cc
diff --git a/cc/draw_quad_unittest.cc b/cc/draw_quad_unittest.cc
index 9cc99c19b328a3fe2e69dcbc9aa0e0a4b3f08258..9b8679111b35fa253b1ba9e760b721ec1160d7bb 100644
--- a/cc/draw_quad_unittest.cc
+++ b/cc/draw_quad_unittest.cc
@@ -280,19 +280,19 @@ TEST(DrawQuadTest, copyYUVVideoDrawQuad)
{
VideoLayerImpl::FramePlane yPlane;
yPlane.resourceId = 45;
- yPlane.size = IntSize(34, 23);
+ yPlane.size = gfx::Size(34, 23);
yPlane.format = 8;
- yPlane.visibleSize = IntSize(623, 235);
+ yPlane.visibleSize = gfx::Size(623, 235);
VideoLayerImpl::FramePlane uPlane;
uPlane.resourceId = 532;
- uPlane.size = IntSize(134, 16);
+ uPlane.size = gfx::Size(134, 16);
uPlane.format = 2;
- uPlane.visibleSize = IntSize(126, 27);
+ uPlane.visibleSize = gfx::Size(126, 27);
VideoLayerImpl::FramePlane vPlane;
vPlane.resourceId = 4;
- vPlane.size = IntSize(456, 486);
+ vPlane.size = gfx::Size(456, 486);
vPlane.format = 46;
- vPlane.visibleSize = IntSize(19, 45);
+ vPlane.visibleSize = gfx::Size(19, 45);
CREATE_SHARED_STATE();
CREATE_QUAD_3(YUVVideoDrawQuad, yPlane, uPlane, vPlane);
« no previous file with comments | « cc/animation_curve.h ('k') | cc/gl_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698