| Index: third_party/WebKit/Source/core/animation/Animation.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/Animation.cpp b/third_party/WebKit/Source/core/animation/Animation.cpp
|
| index b015454e6f5eca7d982d953f19983cd8d66b120e..9e10938d44cae6964f8a6db58e4bf00ac5071282 100644
|
| --- a/third_party/WebKit/Source/core/animation/Animation.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/Animation.cpp
|
| @@ -261,9 +261,9 @@ bool Animation::preCommit(int compositorGroup, bool startOnCompositor) {
|
| bool softChange =
|
| m_compositorState &&
|
| (paused() || m_compositorState->playbackRate != m_playbackRate);
|
| - bool hardChange =
|
| - m_compositorState && (m_compositorState->effectChanged ||
|
| - m_compositorState->startTime != m_startTime);
|
| + bool hardChange = m_compositorState &&
|
| + (m_compositorState->effectChanged ||
|
| + m_compositorState->startTime != m_startTime);
|
|
|
| // FIXME: softChange && !hardChange should generate a Pause/ThenStart,
|
| // not a Cancel, but we can't communicate these to the compositor yet.
|
|
|