Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| 8 #include "core/animation/DocumentAnimations.h" | 7 #include "core/animation/DocumentAnimations.h" |
| 9 #include "core/frame/FrameView.h" | 8 #include "core/frame/FrameView.h" |
| 10 #include "core/frame/LocalFrame.h" | 9 #include "core/frame/LocalFrame.h" |
| 11 #include "core/page/Chrome.h" | 10 #include "core/page/Chrome.h" |
| 12 #include "core/page/ChromeClient.h" | 11 #include "core/page/ChromeClient.h" |
| 13 #include "core/page/Page.h" | 12 #include "core/page/Page.h" |
| 14 #include "core/svg/SVGDocumentExtensions.h" | 13 #include "core/svg/SVGDocumentExtensions.h" |
| 14 #include "wtf/Vector.h" | |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 PageAnimator::PageAnimator(Page* page) | 18 PageAnimator::PageAnimator(Page* page) |
| 19 : m_page(page) | 19 : m_page(page) |
| 20 , m_animationFramePending(false) | 20 , m_animationFramePending(false) |
| 21 , m_servicingAnimations(false) | 21 , m_servicingAnimations(false) |
| 22 , m_updatingLayoutAndStyleForPainting(false) | 22 , m_updatingLayoutAndStyleForPainting(false) |
| 23 { | 23 { |
| 24 } | 24 } |
| 25 | 25 |
| 26 void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime) | 26 void PageAnimator::serviceScriptedAnimations(double monotonicAnimationStartTime) |
| 27 { | 27 { |
| 28 m_animationFramePending = false; | 28 m_animationFramePending = false; |
| 29 TemporaryChange<bool> servicing(m_servicingAnimations, true); | 29 TemporaryChange<bool> servicing(m_servicingAnimations, true); |
| 30 | 30 |
| 31 // sending monotonicAnimationStartTime over to worker global scopes | |
|
shans
2014/08/25 11:53:58
'Send monotonic....' (full sentences, with capital
| |
| 32 for (unsigned i = 0; i < m_page->m_listOfElements->workerVector.size(); i++) { | |
| 33 m_page->m_listOfElements->workerVector.at(i)->processRAF(monotonicAnimat ionStartTime); | |
| 34 } | |
| 35 m_page->m_listOfElements->checkForReport(); | |
| 31 for (RefPtr<Frame> frame = m_page->mainFrame(); frame; frame = frame->tree() .traverseNext()) { | 36 for (RefPtr<Frame> frame = m_page->mainFrame(); frame; frame = frame->tree() .traverseNext()) { |
| 32 if (frame->isLocalFrame()) { | 37 if (frame->isLocalFrame()) { |
| 33 RefPtr<LocalFrame> localFrame = toLocalFrame(frame.get()); | 38 RefPtr<LocalFrame> localFrame = toLocalFrame(frame.get()); |
| 34 localFrame->view()->serviceScrollAnimations(monotonicAnimationStartT ime); | 39 localFrame->view()->serviceScrollAnimations(monotonicAnimationStartT ime); |
| 35 | 40 |
| 36 DocumentAnimations::updateAnimationTimingForAnimationFrame(*localFra me->document(), monotonicAnimationStartTime); | 41 DocumentAnimations::updateAnimationTimingForAnimationFrame(*localFra me->document(), monotonicAnimationStartTime); |
| 37 SVGDocumentExtensions::serviceOnAnimationFrame(*localFrame->document (), monotonicAnimationStartTime); | 42 SVGDocumentExtensions::serviceOnAnimationFrame(*localFrame->document (), monotonicAnimationStartTime); |
| 38 } | 43 } |
| 39 } | 44 } |
| 40 | 45 |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 69 // setFrameRect(). This will be a quick operation for most frames, but the | 74 // setFrameRect(). This will be a quick operation for most frames, but the |
| 70 // NativeWindowWidgets will update a proper clipping region. | 75 // NativeWindowWidgets will update a proper clipping region. |
| 71 view->setFrameRect(view->frameRect()); | 76 view->setFrameRect(view->frameRect()); |
| 72 | 77 |
| 73 // setFrameRect may have the side-effect of causing existing page layout to | 78 // setFrameRect may have the side-effect of causing existing page layout to |
| 74 // be invalidated, so layout needs to be called last. | 79 // be invalidated, so layout needs to be called last. |
| 75 view->updateLayoutAndStyleForPainting(); | 80 view->updateLayoutAndStyleForPainting(); |
| 76 } | 81 } |
| 77 | 82 |
| 78 } | 83 } |
| OLD | NEW |