| Index: cc/resources/picture_layer_tiling_set.h
 | 
| diff --git a/cc/resources/picture_layer_tiling_set.h b/cc/resources/picture_layer_tiling_set.h
 | 
| index bff3bd67208347d3fd58481e6de8eeba793f8a4f..fe19d76bcbaff7fcffa2fce821ab4d1d3ffd92eb 100644
 | 
| --- a/cc/resources/picture_layer_tiling_set.h
 | 
| +++ b/cc/resources/picture_layer_tiling_set.h
 | 
| @@ -15,7 +15,7 @@
 | 
|  class CC_EXPORT PictureLayerTilingSet {
 | 
|   public:
 | 
|    PictureLayerTilingSet(PictureLayerTilingClient* client,
 | 
| -                        const gfx::Size& layer_bounds);
 | 
| +                        gfx::Size layer_bounds);
 | 
|    ~PictureLayerTilingSet();
 | 
|  
 | 
|    void SetClient(PictureLayerTilingClient* client);
 | 
| @@ -27,7 +27,7 @@
 | 
|    // tilings to |new_layer_bounds|.
 | 
|    void SyncTilings(
 | 
|       const PictureLayerTilingSet& other,
 | 
| -     const gfx::Size& new_layer_bounds,
 | 
| +     gfx::Size new_layer_bounds,
 | 
|       const Region& layer_invalidation,
 | 
|       float minimum_contents_scale);
 | 
|  
 | 
| @@ -56,11 +56,11 @@
 | 
|  
 | 
|    void UpdateTilePriorities(
 | 
|        WhichTree tree,
 | 
| -      const gfx::Size& device_viewport,
 | 
| +      gfx::Size device_viewport,
 | 
|        const gfx::Rect& viewport_in_content_space,
 | 
|        const gfx::Rect& visible_content_rect,
 | 
| -      const gfx::Size& last_layer_bounds,
 | 
| -      const gfx::Size& current_layer_bounds,
 | 
| +      gfx::Size last_layer_bounds,
 | 
| +      gfx::Size current_layer_bounds,
 | 
|        float last_layer_contents_scale,
 | 
|        float current_layer_contents_scale,
 | 
|        const gfx::Transform& last_screen_transform,
 | 
| 
 |