| Index: cc/quads/tile_draw_quad.cc
|
| diff --git a/cc/quads/tile_draw_quad.cc b/cc/quads/tile_draw_quad.cc
|
| index 3ff98095e9f0816e6f651d1d28726cf9d4a7325e..60116ccedd6b99aada3f2d7dac056eae1f394492 100644
|
| --- a/cc/quads/tile_draw_quad.cc
|
| +++ b/cc/quads/tile_draw_quad.cc
|
| @@ -22,8 +22,8 @@ scoped_ptr<TileDrawQuad> TileDrawQuad::Create() {
|
| }
|
|
|
| void TileDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
|
| - gfx::Rect rect,
|
| - gfx::Rect opaque_rect,
|
| + const gfx::Rect& rect,
|
| + const gfx::Rect& opaque_rect,
|
| unsigned resource_id,
|
| const gfx::RectF& tex_coord_rect,
|
| gfx::Size texture_size,
|
| @@ -35,9 +35,9 @@ void TileDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
|
| }
|
|
|
| void TileDrawQuad::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,
|
| unsigned resource_id,
|
| const gfx::RectF& tex_coord_rect,
|
|
|