| Index: cc/resources/picture_layer_tiling_unittest.cc
 | 
| diff --git a/cc/resources/picture_layer_tiling_unittest.cc b/cc/resources/picture_layer_tiling_unittest.cc
 | 
| index 83dc4aa09bd61ae7f3f218d2832d93c80e69a26a..002e9aad8dd5af2f38a7e2a900291d36dbba780a 100644
 | 
| --- a/cc/resources/picture_layer_tiling_unittest.cc
 | 
| +++ b/cc/resources/picture_layer_tiling_unittest.cc
 | 
| @@ -18,7 +18,7 @@
 | 
|  
 | 
|  static gfx::Rect ViewportInLayerSpace(
 | 
|      const gfx::Transform& transform,
 | 
| -    const gfx::Size& device_viewport) {
 | 
| +    gfx::Size device_viewport) {
 | 
|  
 | 
|    gfx::Transform inverse;
 | 
|    if (!transform.GetInverse(&inverse))
 | 
| @@ -37,7 +37,7 @@
 | 
|  
 | 
|    static scoped_ptr<TestablePictureLayerTiling> Create(
 | 
|        float contents_scale,
 | 
| -      const gfx::Size& layer_bounds,
 | 
| +      gfx::Size layer_bounds,
 | 
|        PictureLayerTilingClient* client) {
 | 
|      return make_scoped_ptr(new TestablePictureLayerTiling(
 | 
|          contents_scale,
 | 
| @@ -47,7 +47,7 @@
 | 
|  
 | 
|   protected:
 | 
|    TestablePictureLayerTiling(float contents_scale,
 | 
| -                             const gfx::Size& layer_bounds,
 | 
| +                             gfx::Size layer_bounds,
 | 
|                               PictureLayerTilingClient* client)
 | 
|        : PictureLayerTiling(contents_scale, layer_bounds, client) { }
 | 
|  };
 | 
| @@ -57,9 +57,9 @@
 | 
|    PictureLayerTilingIteratorTest() {}
 | 
|    virtual ~PictureLayerTilingIteratorTest() {}
 | 
|  
 | 
| -  void Initialize(const gfx::Size& tile_size,
 | 
| +  void Initialize(gfx::Size tile_size,
 | 
|                    float contents_scale,
 | 
| -                  const gfx::Size& layer_bounds) {
 | 
| +                  gfx::Size layer_bounds) {
 | 
|      client_.SetTileSize(tile_size);
 | 
|      tiling_ = TestablePictureLayerTiling::Create(contents_scale,
 | 
|                                                   layer_bounds,
 | 
| 
 |