| Index: cc/quads/yuv_video_draw_quad.h
|
| diff --git a/cc/quads/yuv_video_draw_quad.h b/cc/quads/yuv_video_draw_quad.h
|
| index aa750fa8ba91a510cfcacd37726eabda3272e2f4..02d307ff6a90ed070b51f5ec1f5c0b432d919a48 100644
|
| --- a/cc/quads/yuv_video_draw_quad.h
|
| +++ b/cc/quads/yuv_video_draw_quad.h
|
| @@ -20,8 +20,8 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
|
| static scoped_ptr<YUVVideoDrawQuad> Create();
|
|
|
| void SetNew(const SharedQuadState* shared_quad_state,
|
| - gfx::Rect rect,
|
| - gfx::Rect opaque_rect,
|
| + const gfx::Rect& rect,
|
| + const gfx::Rect& opaque_rect,
|
| gfx::SizeF tex_scale,
|
| unsigned y_plane_resource_id,
|
| unsigned u_plane_resource_id,
|
| @@ -29,9 +29,9 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
|
| unsigned a_plane_resource_id);
|
|
|
| void SetAll(const SharedQuadState* shared_quad_state,
|
| - gfx::Rect rect,
|
| - gfx::Rect opaque_rect,
|
| - gfx::Rect visible_rect,
|
| + const gfx::Rect& rect,
|
| + const gfx::Rect& opaque_rect,
|
| + const gfx::Rect& visible_rect,
|
| bool needs_blending,
|
| gfx::SizeF tex_scale,
|
| unsigned y_plane_resource_id,
|
|
|