| Index: cc/resources/picture_pile_impl.cc
|
| diff --git a/cc/resources/picture_pile_impl.cc b/cc/resources/picture_pile_impl.cc
|
| index f4fbdf2d014eaee8a2ad44125d267b4b077be4dd..30f3c2d68c2b347067fd73edbe500fb6c6a6583a 100644
|
| --- a/cc/resources/picture_pile_impl.cc
|
| +++ b/cc/resources/picture_pile_impl.cc
|
| @@ -28,11 +28,11 @@ scoped_refptr<PicturePileImpl> PicturePileImpl::CreateFromOther(
|
| return make_scoped_refptr(new PicturePileImpl(other));
|
| }
|
|
|
| -PicturePileImpl::PicturePileImpl() {
|
| +PicturePileImpl::PicturePileImpl() : has_transform_animated_(false) {
|
| }
|
|
|
| PicturePileImpl::PicturePileImpl(const PicturePileBase* other)
|
| - : PicturePileBase(other) {
|
| + : PicturePileBase(other), has_transform_animated_(false) {
|
| }
|
|
|
| PicturePileImpl::~PicturePileImpl() {
|
|
|