[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 22:49:08 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 3d7b4cc56b490ac2d2e512b613b446456b7a1ea7
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 11 21:24:06 2011 +0000

    Replace ASSERTs with FIXMEs.
    
    Reviewed by Sam Weinig.
    
    * UIProcess/DrawingAreaProxyImpl.cpp:
    (WebKit::DrawingAreaProxyImpl::sizeDidChange):
    (WebKit::DrawingAreaProxyImpl::setPageIsVisible):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75547 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 837a89f..0a95c0d 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -2,6 +2,16 @@
 
         Reviewed by Sam Weinig.
 
+        Replace ASSERTs with FIXMEs.
+
+        * UIProcess/DrawingAreaProxyImpl.cpp:
+        (WebKit::DrawingAreaProxyImpl::sizeDidChange):
+        (WebKit::DrawingAreaProxyImpl::setPageIsVisible):
+
+2011-01-11  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by Sam Weinig.
+
         Add DrawingAreaImpl skeleton class
         https://bugs.webkit.org/show_bug.cgi?id=52246
 
diff --git a/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp b/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp
index 79924af..d3c5663 100644
--- a/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp
+++ b/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp
@@ -63,12 +63,12 @@ bool DrawingAreaProxyImpl::paint(const WebCore::IntRect&, PlatformDrawingContext
 
 void DrawingAreaProxyImpl::sizeDidChange()
 {
-    ASSERT_NOT_REACHED();
+    // FIXME: Implement.
 }
 
 void DrawingAreaProxyImpl::setPageIsVisible(bool pageIsVisible)
 {
-    ASSERT_NOT_REACHED();
+    // FIXME: Implement.
 }
 
 void DrawingAreaProxyImpl::attachCompositingContext(uint32_t contextID)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list