| Index: cc/resources/picture_pile_base.cc
|
| diff --git a/cc/resources/picture_pile_base.cc b/cc/resources/picture_pile_base.cc
|
| index b1132ad369d2836eee3092476041b8c4385ed6ee..447d1b34c25e778f532c21cc8f0997de9dd74446 100644
|
| --- a/cc/resources/picture_pile_base.cc
|
| +++ b/cc/resources/picture_pile_base.cc
|
| @@ -48,7 +48,8 @@ PicturePileBase::PicturePileBase()
|
| show_debug_picture_borders_(false),
|
| clear_canvas_with_debug_color_(kDefaultClearCanvasSetting),
|
| has_any_recordings_(false),
|
| - has_text_(false) {
|
| + has_text_(false),
|
| + is_mask_(false) {
|
| tiling_.SetMaxTextureSize(gfx::Size(kBasePictureSize, kBasePictureSize));
|
| tile_grid_info_.fTileInterval.setEmpty();
|
| tile_grid_info_.fMargin.setEmpty();
|
| @@ -69,7 +70,8 @@ PicturePileBase::PicturePileBase(const PicturePileBase* other)
|
| show_debug_picture_borders_(other->show_debug_picture_borders_),
|
| clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_),
|
| has_any_recordings_(other->has_any_recordings_),
|
| - has_text_(other->has_text_) {
|
| + has_text_(other->has_text_),
|
| + is_mask_(other->is_mask_) {
|
| }
|
|
|
| PicturePileBase::~PicturePileBase() {
|
|
|