Chromium Code Reviews| Index: cc/resources/picture_pile_base.cc |
| diff --git a/cc/resources/picture_pile_base.cc b/cc/resources/picture_pile_base.cc |
| index 7d60dcafc6b6b72839790e8b4f13e976c9f09730..1827dcc6e44c8cd213d7a4e86356c18412d3ea89 100644 |
| --- a/cc/resources/picture_pile_base.cc |
| +++ b/cc/resources/picture_pile_base.cc |
| @@ -44,8 +44,7 @@ PicturePileBase::PicturePileBase() |
| slow_down_raster_scale_factor_for_debug_(0), |
| contents_opaque_(false), |
| show_debug_picture_borders_(false), |
| - clear_canvas_with_debug_color_(kDefaultClearCanvasSetting), |
| - num_raster_threads_(0) { |
| + clear_canvas_with_debug_color_(kDefaultClearCanvasSetting) { |
|
reveman
2014/01/07 17:24:06
nit: should only be one space between ")" and "{"
sohanjg
2014/01/08 05:55:43
Done.
|
| tiling_.SetMaxTextureSize(gfx::Size(kBasePictureSize, kBasePictureSize)); |
| tile_grid_info_.fTileInterval.setEmpty(); |
| tile_grid_info_.fMargin.setEmpty(); |
| @@ -63,8 +62,7 @@ PicturePileBase::PicturePileBase(const PicturePileBase* other) |
| other->slow_down_raster_scale_factor_for_debug_), |
| contents_opaque_(other->contents_opaque_), |
| show_debug_picture_borders_(other->show_debug_picture_borders_), |
| - clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_), |
| - num_raster_threads_(other->num_raster_threads_) { |
| + clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_) { |
| } |
| PicturePileBase::PicturePileBase( |
| @@ -78,8 +76,7 @@ PicturePileBase::PicturePileBase( |
| other->slow_down_raster_scale_factor_for_debug_), |
| contents_opaque_(other->contents_opaque_), |
| show_debug_picture_borders_(other->show_debug_picture_borders_), |
| - clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_), |
| - num_raster_threads_(other->num_raster_threads_) { |
| + clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_) { |
|
reveman
2014/01/07 17:24:06
nit: should only be one space between ")" and "{"
sohanjg
2014/01/08 05:55:43
Done.
|
| for (PictureMap::const_iterator it = other->picture_map_.begin(); |
| it != other->picture_map_.end(); |
| ++it) { |