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

beidson at apple.com beidson at apple.com
Wed Dec 22 18:19:50 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 08040ac17c8b0febe5583bce069ad7cca54d1b92
Author: beidson at apple.com <beidson at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 9 22:35:45 2010 +0000

    <rdar://problem/8749750> and https://bugs.webkit.org/show_bug.cgi?id=50786
    WK2 authentication never consults WebCore session credential storage.
    
    Reviewed by Sam Weinig.
    
    * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
    (WebKit::WebFrameLoaderClient::shouldUseCredentialStorage): Since we don't need to expose this as
      API at this time, always return true.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73652 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 3e95fc1..bb3d394 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,14 @@
+2010-12-09  Brady Eidson  <beidson at apple.com>
+
+        Reviewed by Sam Weinig.
+
+        <rdar://problem/8749750> and https://bugs.webkit.org/show_bug.cgi?id=50786
+        WK2 authentication never consults WebCore session credential storage.
+
+        * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
+        (WebKit::WebFrameLoaderClient::shouldUseCredentialStorage): Since we don't need to expose this as
+          API at this time, always return true.
+
 2010-12-09  Sam Weinig  <weinig at apple.com>
 
         Reviewed by Alexey Proskuryakov.
diff --git a/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp b/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
index 9178d20..937a8c1 100644
--- a/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
+++ b/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
@@ -146,7 +146,6 @@ void WebFrameLoaderClient::assignIdentifierToInitialRequest(unsigned long identi
     notImplemented();
 }
 
-
 void WebFrameLoaderClient::dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse)
 {
     notImplemented();
@@ -154,8 +153,7 @@ void WebFrameLoaderClient::dispatchWillSendRequest(DocumentLoader*, unsigned lon
 
 bool WebFrameLoaderClient::shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier)
 {
-    notImplemented();
-    return false;
+    return true;
 }
 
 void WebFrameLoaderClient::dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long, const AuthenticationChallenge& challenge)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list