| Index: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.h
|
| diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.h b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.h
|
| index deae2317912ce2b47b314ee692455f7e1c794c37..c235ce57e256968753744f16cb53d0945f79bba1 100644
|
| --- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.h
|
| +++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.h
|
| @@ -55,7 +55,7 @@ class CORE_EXPORT KeyframeEffectReadOnly : public AnimationEffectReadOnly {
|
|
|
| bool isKeyframeEffectReadOnly() const override { return true; }
|
|
|
| - bool affects(PropertyHandle) const;
|
| + bool affects(const PropertyHandle&) const;
|
| const EffectModel* model() const { return m_model.get(); }
|
| EffectModel* model() { return m_model.get(); }
|
| void setModel(EffectModel* model) { m_model = model; }
|
| @@ -71,7 +71,7 @@ class CORE_EXPORT KeyframeEffectReadOnly : public AnimationEffectReadOnly {
|
| double timeOffset,
|
| double animationPlaybackRate);
|
| bool hasActiveAnimationsOnCompositor() const;
|
| - bool hasActiveAnimationsOnCompositor(CSSPropertyID) const;
|
| + bool hasActiveAnimationsOnCompositor(const PropertyHandle&) const;
|
| bool cancelAnimationOnCompositor();
|
| void restartAnimationOnCompositor();
|
| void cancelIncompatibleAnimationsOnCompositor();
|
|
|