| Index: cc/layers/layer_impl.cc
|
| diff --git a/cc/layers/layer_impl.cc b/cc/layers/layer_impl.cc
|
| index 4fa4e15a25420c0ec65083fa49aa293efb65640d..040f73add67bba73e3defc7e8ac54a1426f81f57 100644
|
| --- a/cc/layers/layer_impl.cc
|
| +++ b/cc/layers/layer_impl.cc
|
| @@ -969,10 +969,6 @@ bool LayerImpl::HasPotentiallyRunningFilterAnimation() const {
|
| return layer_tree_impl_->HasPotentiallyRunningFilterAnimation(this);
|
| }
|
|
|
| -bool LayerImpl::FilterIsAnimatingOnImplOnly() const {
|
| - return layer_tree_impl_->FilterIsAnimatingOnImplOnly(this);
|
| -}
|
| -
|
| void LayerImpl::SetBackgroundFilters(
|
| const FilterOperations& filters) {
|
| if (background_filters_ == filters)
|
| @@ -1011,10 +1007,6 @@ bool LayerImpl::HasPotentiallyRunningOpacityAnimation() const {
|
| return layer_tree_impl_->HasPotentiallyRunningOpacityAnimation(this);
|
| }
|
|
|
| -bool LayerImpl::OpacityIsAnimatingOnImplOnly() const {
|
| - return layer_tree_impl_->OpacityIsAnimatingOnImplOnly(this);
|
| -}
|
| -
|
| void LayerImpl::SetElementId(uint64_t element_id) {
|
| if (element_id == element_id_)
|
| return;
|
| @@ -1076,10 +1068,6 @@ bool LayerImpl::HasPotentiallyRunningTransformAnimation() const {
|
| return layer_tree_impl_->HasPotentiallyRunningTransformAnimation(this);
|
| }
|
|
|
| -bool LayerImpl::TransformIsAnimatingOnImplOnly() const {
|
| - return layer_tree_impl_->TransformIsAnimatingOnImplOnly(this);
|
| -}
|
| -
|
| bool LayerImpl::HasOnlyTranslationTransforms() const {
|
| return layer_tree_impl_->HasOnlyTranslationTransforms(this);
|
| }
|
|
|