Chromium Code Reviews| Index: cc/resources/picture_pile_impl.h |
| diff --git a/cc/resources/picture_pile_impl.h b/cc/resources/picture_pile_impl.h |
| index 75ee5363cfdd7dd569298825affcc388c22f4cdf..ae786b2528787890e5bd7ba079c4ff9e8d5aa75b 100644 |
| --- a/cc/resources/picture_pile_impl.h |
| +++ b/cc/resources/picture_pile_impl.h |
| @@ -58,6 +58,11 @@ class CC_EXPORT PicturePileImpl : public PicturePileBase { |
| skia::RefPtr<SkPicture> GetFlattenedPicture(); |
| + bool has_transform_animated() const { return has_transform_animated_; } |
|
reveman
2014/10/15 17:34:09
"transform animated" is confusing here. what trans
|
| + void set_has_transform_animated(bool has_transform_animated) { |
| + has_transform_animated_ = has_transform_animated; |
| + } |
| + |
| struct CC_EXPORT Analysis { |
| Analysis(); |
| ~Analysis(); |
| @@ -124,6 +129,8 @@ class CC_EXPORT PicturePileImpl : public PicturePileBase { |
| RenderingStatsInstrumentation* rendering_stats_instrumentation, |
| bool is_analysis) const; |
| + bool has_transform_animated_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(PicturePileImpl); |
| }; |