[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

beidson at apple.com beidson at apple.com
Thu Apr 8 02:14:19 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit b9015a0801a532ba4d0059c0b03a78de2e4553f6
Author: beidson at apple.com <beidson at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 8 20:22:09 2010 +0000

    Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
    
    Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
    
    * DumpRenderTree/win/LayoutTestControllerWin.cpp:
    (LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55678 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 608bc49..6efbd72 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2010-03-08  Brady Eidson  <beidson at apple.com>
+
+        Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
+
+        Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
+
+        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
+        (LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
+
 2010-03-08  Chris Jerdonek  <cjerdonek at webkit.org>
 
         Unreviewed.
diff --git a/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp b/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
index f8449f4..77f7443 100644
--- a/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
+++ b/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp
@@ -1189,5 +1189,6 @@ void LayoutTestController::apiTestGoToCurrentBackForwardItem()
     if (FAILED(backForwardList->currentItem(&item)))
         return;
 
-    webView->goToBackForwardItem(item.get(), 0);
+    BOOL success;
+    webView->goToBackForwardItem(item.get(), &success);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list