Changeset 148155 in webkit
- Timestamp:
- Apr 10, 2013, 5:04:06 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r148149 r148155 1 2013-04-10 Simon Fraser <simon.fraser@apple.com> 2 3 Log when the animation timer fires 4 https://bugs.webkit.org/show_bug.cgi?id=114393 5 6 Reviewed by Dean Jackson. 7 8 Logging to the Animations log channel when the updateAnimationTimer 9 fires is useful, because it indicates whether we're running 10 software animations. 11 12 * page/animation/AnimationController.cpp: 13 (WebCore::AnimationControllerPrivate::updateAnimationTimer): 14 1 15 2013-04-10 Beth Dakin <bdakin@apple.com> 2 16 -
trunk/Source/WebCore/page/animation/AnimationController.cpp
r144935 r148155 38 38 #include "Frame.h" 39 39 #include "FrameView.h" 40 #include "Logging.h" 40 41 #include "PseudoElement.h" 41 42 #include "RenderView.h" … … 136 137 double timeToNextService = updateAnimations(callSetChanged); 137 138 139 LOG(Animations, "updateAnimationTimer: timeToNextService is %.2f", timeToNextService); 140 138 141 // If we want service immediately, we start a repeating timer to reduce the overhead of starting 139 142 if (!timeToNextService) {
Note:
See TracChangeset
for help on using the changeset viewer.