[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

darin at chromium.org darin at chromium.org
Wed Dec 22 11:22:15 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 41f095f2f7652b4ae0e828da07b022f601c76b49
Author: darin at chromium.org <darin at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 20 20:23:52 2010 +0000

    2010-07-20  Darin Fisher  <darin at chromium.org>
    
            Fix Chromium build bustage.
    
            * src/ResourceHandle.cpp:
            (WebCore::ResourceHandle::hasAuthenticationChallenge): Add
            implementation of this method that always returns false.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63770 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index b6193f0..b9a8933 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,5 +1,13 @@
 2010-07-20  Darin Fisher  <darin at chromium.org>
 
+        Fix Chromium build bustage.
+
+        * src/ResourceHandle.cpp:
+        (WebCore::ResourceHandle::hasAuthenticationChallenge): Add
+        implementation of this method that always returns false.
+
+2010-07-20  Darin Fisher  <darin at chromium.org>
+
         Reviewed by Jian Li.
 
         [Chromium] Add interface for downloading to a file.  This can be used
diff --git a/WebKit/chromium/src/ResourceHandle.cpp b/WebKit/chromium/src/ResourceHandle.cpp
index 7608515..88f7f39 100644
--- a/WebKit/chromium/src/ResourceHandle.cpp
+++ b/WebKit/chromium/src/ResourceHandle.cpp
@@ -252,6 +252,11 @@ bool ResourceHandle::start(Frame* deprecated)
     return true;
 }
 
+bool ResourceHandle::hasAuthenticationChallenge() const
+{
+    return false;
+}
+
 void ResourceHandle::clearAuthentication()
 {
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list