| Index: cc/trees/property_tree.h
|
| diff --git a/cc/trees/property_tree.h b/cc/trees/property_tree.h
|
| index 46f0cb7c57e68e9902183589a0bf55b20a912293..aad16b3fcd9f097172d0c2d42fee3ff5e87b40a1 100644
|
| --- a/cc/trees/property_tree.h
|
| +++ b/cc/trees/property_tree.h
|
| @@ -173,9 +173,8 @@ class CC_EXPORT TransformTree final : public PropertyTree<TransformNode> {
|
| void clear();
|
|
|
| TransformNode* FindNodeFromElementId(ElementId id);
|
| - void OnTransformAnimated(const gfx::Transform& transform,
|
| - int id,
|
| - LayerTreeImpl* layer_tree_impl);
|
| + void OnTransformAnimated(ElementId element_id,
|
| + const gfx::Transform& transform);
|
| // Computes the change of basis transform from node |source_id| to |dest_id|.
|
| // This is used by scroll children to compute transform from their scroll
|
| // parent space (source) to their parent space (destination) and it can atmost
|
| @@ -343,10 +342,8 @@ class CC_EXPORT EffectTree final : public PropertyTree<EffectNode> {
|
| void UpdateSurfaceContentsScale(EffectNode* node);
|
|
|
| EffectNode* FindNodeFromElementId(ElementId id);
|
| - void OnOpacityAnimated(float opacity, int id, LayerTreeImpl* layer_tree_impl);
|
| - void OnFilterAnimated(const FilterOperations& filters,
|
| - int id,
|
| - LayerTreeImpl* layer_tree_impl);
|
| + void OnOpacityAnimated(ElementId id, float opacity);
|
| + void OnFilterAnimated(ElementId id, const FilterOperations& filters);
|
|
|
| void UpdateEffects(int id);
|
|
|
|
|