[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

andersca at apple.com andersca at apple.com
Sun Feb 20 23:45:20 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit e5926275a1955094cdd841f77353d2efbb4f051b
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 24 23:16:26 2011 +0000

    2011-01-24  Anders Carlsson  <andersca at apple.com>
    
            Reviewed by John Sullivan.
    
            Don't use the timeout checker for non-user-interaction messages
            https://bugs.webkit.org/show_bug.cgi?id=53046
    
            * UIProcess/ChunkedUpdateDrawingAreaProxy.cpp:
            (WebKit::ChunkedUpdateDrawingAreaProxy::didSetSize):
            (WebKit::ChunkedUpdateDrawingAreaProxy::sendSetSize):
            * UIProcess/LayerBackedDrawingAreaProxy.cpp:
            (WebKit::LayerBackedDrawingAreaProxy::sizeDidChange):
            (WebKit::LayerBackedDrawingAreaProxy::didSetSize):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76550 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index fc79827..0d96205 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,17 @@
+2011-01-24  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by John Sullivan.
+
+        Don't use the timeout checker for non-user-interaction messages
+        https://bugs.webkit.org/show_bug.cgi?id=53046
+
+        * UIProcess/ChunkedUpdateDrawingAreaProxy.cpp:
+        (WebKit::ChunkedUpdateDrawingAreaProxy::didSetSize):
+        (WebKit::ChunkedUpdateDrawingAreaProxy::sendSetSize):
+        * UIProcess/LayerBackedDrawingAreaProxy.cpp:
+        (WebKit::LayerBackedDrawingAreaProxy::sizeDidChange):
+        (WebKit::LayerBackedDrawingAreaProxy::didSetSize):
+
 2011-01-24  Adam Roben  <aroben at apple.com>
 
         Windows Production build fix
diff --git a/Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.cpp b/Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.cpp
index 22e9c84..66c2462 100644
--- a/Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.cpp
+++ b/Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.cpp
@@ -113,9 +113,6 @@ void ChunkedUpdateDrawingAreaProxy::didSetSize(UpdateChunk* updateChunk)
     invalidateBackingStore();
     if (!updateChunk->isEmpty())
         drawUpdateChunkIntoBackingStore(updateChunk);
-
-    WebPageProxy* page = this->page();
-    page->process()->responsivenessTimer()->stop();
 }
 
 void ChunkedUpdateDrawingAreaProxy::update(UpdateChunk* updateChunk)
@@ -143,7 +140,6 @@ void ChunkedUpdateDrawingAreaProxy::sendSetSize()
         return;
     m_isWaitingForDidSetFrameNotification = true;
     
-    m_webPageProxy->process()->responsivenessTimer()->start();
     m_webPageProxy->process()->send(DrawingAreaLegacyMessage::SetSize, m_webPageProxy->pageID(), CoreIPC::In(info().identifier, m_size));
 }
     
diff --git a/Source/WebKit2/UIProcess/LayerBackedDrawingAreaProxy.cpp b/Source/WebKit2/UIProcess/LayerBackedDrawingAreaProxy.cpp
index 9ed7844..07bf68b 100644
--- a/Source/WebKit2/UIProcess/LayerBackedDrawingAreaProxy.cpp
+++ b/Source/WebKit2/UIProcess/LayerBackedDrawingAreaProxy.cpp
@@ -80,7 +80,6 @@ void LayerBackedDrawingAreaProxy::sizeDidChange()
 
     m_isWaitingForDidSetFrameNotification = true;
 
-    page->process()->responsivenessTimer()->start();
     page->process()->send(DrawingAreaLegacyMessage::SetSize, page->pageID(), CoreIPC::In(info().identifier, m_size));
 }
 
@@ -119,9 +118,6 @@ void LayerBackedDrawingAreaProxy::didSetSize(const IntSize& size)
 
     if (size != m_lastSetViewSize)
         setSize(m_lastSetViewSize);
-
-    WebPageProxy* page = this->page();
-    page->process()->responsivenessTimer()->stop();
 }
 
 void LayerBackedDrawingAreaProxy::update()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list