| Index: cc/trees/layer_tree_impl.h
|
| diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h
|
| index 37fc1eee6e4bf9e39dd526c77fbb0ce08e6e0e46..2a1e14b148fe19022a757e77dd9db07786b98687 100644
|
| --- a/cc/trees/layer_tree_impl.h
|
| +++ b/cc/trees/layer_tree_impl.h
|
| @@ -156,6 +156,7 @@ class CC_EXPORT LayerTreeImpl {
|
|
|
| void AddToOpacityAnimationsMap(int id, float opacity);
|
| void AddToTransformAnimationsMap(int id, gfx::Transform transform);
|
| + void AddToFilterAnimationsMap(int id, const FilterOperations& filters);
|
|
|
| int source_frame_number() const { return source_frame_number_; }
|
| void set_source_frame_number(int frame_number) {
|
| @@ -506,6 +507,7 @@ class CC_EXPORT LayerTreeImpl {
|
|
|
| std::unordered_map<int, float> opacity_animations_map_;
|
| std::unordered_map<int, gfx::Transform> transform_animations_map_;
|
| + std::unordered_map<int, FilterOperations> filter_animations_map_;
|
|
|
| // Maps from clip layer ids to scroll layer ids. Note that this only includes
|
| // the subset of clip layers that act as scrolling containers. (This is
|
|
|