Title: [135317] trunk/Source/WebCore
Revision
135317
Author
bfulg...@webkit.org
Date
2012-11-20 14:54:38 -0800 (Tue, 20 Nov 2012)

Log Message

[WinCairo] Build fix after r135316

* platform/network/curl/AuthenticationChallenge.h: Update stub
  implementations to match Apple Windows port.
(WebCore::AuthenticationChallenge::AuthenticationChallenge): Add
  missing identifier argument.
(WebCore::AuthenticationChallenge::setAuthenticationClient): Supply
  missing set method.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (135316 => 135317)


--- trunk/Source/WebCore/ChangeLog	2012-11-20 22:50:37 UTC (rev 135316)
+++ trunk/Source/WebCore/ChangeLog	2012-11-20 22:54:38 UTC (rev 135317)
@@ -1,3 +1,14 @@
+2012-11-20  Brent Fulgham  <bfulg...@webkit.org>
+
+        [WinCairo] Build fix after r135316
+
+        * platform/network/curl/AuthenticationChallenge.h: Update stub
+          implementations to match Apple Windows port.
+        (WebCore::AuthenticationChallenge::AuthenticationChallenge): Add
+          missing identifier argument.
+        (WebCore::AuthenticationChallenge::setAuthenticationClient): Supply
+          missing set method.
+
 2012-11-20  Tony Chang  <t...@chromium.org>
 
         When calling DocumentStyleSheetCollection::addUserSheet, pass in a user sheet

Modified: trunk/Source/WebCore/platform/network/curl/AuthenticationChallenge.h (135316 => 135317)


--- trunk/Source/WebCore/platform/network/curl/AuthenticationChallenge.h	2012-11-20 22:50:37 UTC (rev 135316)
+++ trunk/Source/WebCore/platform/network/curl/AuthenticationChallenge.h	2012-11-20 22:54:38 UTC (rev 135317)
@@ -37,12 +37,14 @@
     {
     }
 
-    AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
+    AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error, uint64_t identifier)
         : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
     {
+        m_identifier = identifier;
     }
 
     AuthenticationClient* authenticationClient() const { return m_authenticationClient.get(); }
+    void setAuthenticationClient(AuthenticationClient* client) { m_authenticationClient = client; }
 
     RefPtr<AuthenticationClient> m_authenticationClient;
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to