Title: [111585] trunk/Source/WebCore
Revision
111585
Author
[email protected]
Date
2012-03-21 11:43:21 -0700 (Wed, 21 Mar 2012)

Log Message

[chromium] CCThreadProxy must initialize frameBeginTime to monotonicallyIncreasingTime rather than zero
https://bugs.webkit.org/show_bug.cgi?id=81790

Reviewed by James Robinson.

* platform/graphics/chromium/cc/CCThreadProxy.cpp:
(WebCore::CCThreadProxy::scheduledActionBeginFrame):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (111584 => 111585)


--- trunk/Source/WebCore/ChangeLog	2012-03-21 18:40:34 UTC (rev 111584)
+++ trunk/Source/WebCore/ChangeLog	2012-03-21 18:43:21 UTC (rev 111585)
@@ -1,3 +1,13 @@
+2012-03-21  Nat Duca  <[email protected]>
+
+        [chromium] CCThreadProxy must initialize frameBeginTime to monotonicallyIncreasingTime rather than zero
+        https://bugs.webkit.org/show_bug.cgi?id=81790
+
+        Reviewed by James Robinson.
+
+        * platform/graphics/chromium/cc/CCThreadProxy.cpp:
+        (WebCore::CCThreadProxy::scheduledActionBeginFrame):
+
 2012-03-21  Xingnan Wang  <[email protected]>
 
         Add multichannel support in RealtimeAnalyser

Modified: trunk/Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.cpp (111584 => 111585)


--- trunk/Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.cpp	2012-03-21 18:40:34 UTC (rev 111584)
+++ trunk/Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.cpp	2012-03-21 18:43:21 UTC (rev 111585)
@@ -397,7 +397,7 @@
     TRACE_EVENT0("cc", "CCThreadProxy::scheduledActionBeginFrame");
     ASSERT(!m_pendingBeginFrameRequest);
     m_pendingBeginFrameRequest = adoptPtr(new BeginFrameAndCommitState());
-    m_pendingBeginFrameRequest->frameBeginTime = 0;
+    m_pendingBeginFrameRequest->frameBeginTime = currentTime();
     m_pendingBeginFrameRequest->scrollInfo = m_layerTreeHostImpl->processScrollDeltas();
 
     m_mainThreadProxy->postTask(createCCThreadTask(this, &CCThreadProxy::beginFrame));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to