Title: [134952] trunk/Source/WebCore
Revision
134952
Author
[email protected]
Date
2012-11-16 08:12:15 -0800 (Fri, 16 Nov 2012)

Log Message

Coordinated Graphics: support the "freeze animations" API
https://bugs.webkit.org/show_bug.cgi?id=100703

Reviewed by Noam Rosenthal.

Typo fix after previous patch.

No new tests, it's just a typo that only takes effect in the browser.

* platform/graphics/GraphicsLayerAnimation.cpp:
(WebCore::GraphicsLayerAnimation::GraphicsLayerAnimation):
Initialize members.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134951 => 134952)


--- trunk/Source/WebCore/ChangeLog	2012-11-16 16:01:48 UTC (rev 134951)
+++ trunk/Source/WebCore/ChangeLog	2012-11-16 16:12:15 UTC (rev 134952)
@@ -1,3 +1,18 @@
+2012-11-16  Balazs Kelemen  <[email protected]>
+
+        Coordinated Graphics: support the "freeze animations" API
+        https://bugs.webkit.org/show_bug.cgi?id=100703
+
+        Reviewed by Noam Rosenthal.
+
+        Typo fix after previous patch.
+
+        No new tests, it's just a typo that only takes effect in the browser.
+
+        * platform/graphics/GraphicsLayerAnimation.cpp:
+        (WebCore::GraphicsLayerAnimation::GraphicsLayerAnimation):
+        Initialize members.
+
 2012-11-16  Dan Carney  <[email protected]>
 
         add 7 bit strings capabilities to the v8 binding layer

Modified: trunk/Source/WebCore/platform/graphics/GraphicsLayerAnimation.cpp (134951 => 134952)


--- trunk/Source/WebCore/platform/graphics/GraphicsLayerAnimation.cpp	2012-11-16 16:01:48 UTC (rev 134951)
+++ trunk/Source/WebCore/platform/graphics/GraphicsLayerAnimation.cpp	2012-11-16 16:12:15 UTC (rev 134952)
@@ -221,6 +221,8 @@
     , m_listsMatch(listsMatch)
     , m_startTime(startTime)
     , m_pauseTime(0)
+    , m_totalRunningTime(0)
+    , m_lastRefreshedTime(m_startTime)
     , m_state(PlayingState)
 {
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to