| Index: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| index 62169ab76a67887a79619b90a23a4da218e58f30..3b97beff90a78becb2fe419b63644ec0aeb1197c 100644
|
| --- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
|
| @@ -313,11 +313,11 @@ bool KeyframeEffectReadOnly::hasActiveAnimationsOnCompositor() const {
|
| }
|
|
|
| bool KeyframeEffectReadOnly::hasActiveAnimationsOnCompositor(
|
| - CSSPropertyID property) const {
|
| - return hasActiveAnimationsOnCompositor() && affects(PropertyHandle(property));
|
| + const PropertyHandle& property) const {
|
| + return hasActiveAnimationsOnCompositor() && affects(property);
|
| }
|
|
|
| -bool KeyframeEffectReadOnly::affects(PropertyHandle property) const {
|
| +bool KeyframeEffectReadOnly::affects(const PropertyHandle& property) const {
|
| return m_model && m_model->affects(property);
|
| }
|
|
|
|
|