Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: Source/core/page/PageAnimator.cpp

Issue 135693003: Defer starting of animations until after compositing update (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Move some AnimationClock functions to cpp. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/page/PageAnimator.h" 6 #include "core/page/PageAnimator.h"
7 7
8 #include "core/animation/DocumentAnimations.h" 8 #include "core/animation/DocumentAnimations.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/frame/Frame.h" 10 #include "core/frame/Frame.h"
11 #include "core/frame/FrameView.h" 11 #include "core/frame/FrameView.h"
12 #include "core/page/Page.h" 12 #include "core/page/Page.h"
13 13
14 namespace WebCore { 14 namespace WebCore {
15 15
16 PageAnimator::PageAnimator(Page* page) 16 PageAnimator::PageAnimator(Page* page)
17 : m_page(page) 17 : m_page(page)
18 , m_servicingAnimations(false) 18 , m_servicingAnimations(false)
19 { 19 {
20 } 20 }
21 21
22 void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime) 22 void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime)
23 { 23 {
24 TemporaryChange<bool> servicing(m_servicingAnimations, true); 24 TemporaryChange<bool> servicing(m_servicingAnimations, true);
25 25
26 for (RefPtr<Frame> frame = m_page->mainFrame(); frame; frame = frame->tree() .traverseNext()) { 26 for (RefPtr<Frame> frame = m_page->mainFrame(); frame; frame = frame->tree() .traverseNext()) {
27 frame->view()->serviceScrollAnimations(); 27 frame->view()->serviceScrollAnimations();
28 DocumentAnimations::serviceOnAnimationFrame(*frame->document(), monotoni cAnimationStartTime); 28 DocumentAnimations::updateAnimationTimingForAnimationFrame(*frame->docum ent(), monotonicAnimationStartTime);
29 DocumentAnimations::dispatchAnimationEvents(*frame->document());
esprehn 2014/02/24 23:14:35 This should have a FIXME that we should move the a
dstockwell 2014/02/25 00:52:03 Done.
29 } 30 }
30 31
31 Vector<RefPtr<Document> > documents; 32 Vector<RefPtr<Document> > documents;
32 for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traver seNext()) 33 for (Frame* frame = m_page->mainFrame(); frame; frame = frame->tree().traver seNext())
33 documents.append(frame->document()); 34 documents.append(frame->document());
34 35
35 for (size_t i = 0; i < documents.size(); ++i) 36 for (size_t i = 0; i < documents.size(); ++i)
36 documents[i]->serviceScriptedAnimations(monotonicAnimationStartTime); 37 documents[i]->serviceScriptedAnimations(monotonicAnimationStartTime);
37 } 38 }
38 39
39 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698