| Index: cc/layers/layer_impl.h
|
| diff --git a/cc/layers/layer_impl.h b/cc/layers/layer_impl.h
|
| index 457e790c2c967777bc1d465e384b14b1e08aede8..6570d5fec994d29c60992ed84719d9015fd92123 100644
|
| --- a/cc/layers/layer_impl.h
|
| +++ b/cc/layers/layer_impl.h
|
| @@ -100,6 +100,9 @@ class CC_EXPORT LayerImpl {
|
| void SetClipTreeIndex(int index);
|
| int clip_tree_index() const { return clip_tree_index_; }
|
|
|
| + void SetNewClipTreeIndex(int index);
|
| + int new_clip_tree_index() const { return new_clip_tree_index_; }
|
| +
|
| void SetEffectTreeIndex(int index);
|
| int effect_tree_index() const { return effect_tree_index_; }
|
| int render_target_effect_tree_index() const;
|
| @@ -531,6 +534,7 @@ class CC_EXPORT LayerImpl {
|
| int transform_tree_index_;
|
| int effect_tree_index_;
|
| int clip_tree_index_;
|
| + int new_clip_tree_index_;
|
| int scroll_tree_index_;
|
|
|
| protected:
|
|
|