| Index: third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PageAnimator.cpp b/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| index c00233ce11995c54fd9e33636cdd0ad9ed1f6aad..7fff6854b5d59dc56eee65a22b077c1851ab1daa 100644
|
| --- a/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PageAnimator.cpp
|
| @@ -33,7 +33,7 @@ DEFINE_TRACE(PageAnimator)
|
|
|
| void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime)
|
| {
|
| - TemporaryChange<bool> servicing(m_servicingAnimations, true);
|
| + TemporaryChange<bool> servicing(&m_servicingAnimations, true);
|
| clock().updateTime(monotonicAnimationStartTime);
|
|
|
| HeapVector<Member<Document>, 32> documents;
|
| @@ -81,7 +81,7 @@ void PageAnimator::scheduleVisualUpdate(LocalFrame* frame)
|
| void PageAnimator::updateAllLifecyclePhases(LocalFrame& rootFrame)
|
| {
|
| FrameView* view = rootFrame.view();
|
| - TemporaryChange<bool> servicing(m_updatingLayoutAndStyleForPainting, true);
|
| + TemporaryChange<bool> servicing(&m_updatingLayoutAndStyleForPainting, true);
|
| view->updateAllLifecyclePhases();
|
| }
|
|
|
|
|