Changeset 135317 in webkit


Ignore:
Timestamp:
Nov 20, 2012, 2:54:38 PM (12 years ago)
Author:
bfulgham@webkit.org
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r135316 r135317  
     12012-11-20  Brent Fulgham  <bfulgham@webkit.org>
     2
     3        [WinCairo] Build fix after r135316
     4
     5        * platform/network/curl/AuthenticationChallenge.h: Update stub
     6          implementations to match Apple Windows port.
     7        (WebCore::AuthenticationChallenge::AuthenticationChallenge): Add
     8          missing identifier argument.
     9        (WebCore::AuthenticationChallenge::setAuthenticationClient): Supply
     10          missing set method.
     11
    1122012-11-20  Tony Chang  <tony@chromium.org>
    213
  • trunk/Source/WebCore/platform/network/curl/AuthenticationChallenge.h

    r95901 r135317  
    3838    }
    3939
    40     AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error)
     40    AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error, uint64_t identifier)
    4141        : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
    4242    {
     43        m_identifier = identifier;
    4344    }
    4445
    4546    AuthenticationClient* authenticationClient() const { return m_authenticationClient.get(); }
     47    void setAuthenticationClient(AuthenticationClient* client) { m_authenticationClient = client; }
    4648
    4749    RefPtr<AuthenticationClient> m_authenticationClient;
Note: See TracChangeset for help on using the changeset viewer.