Changeset 135317 in webkit
- Timestamp:
- Nov 20, 2012, 2:54:38 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r135316 r135317 1 2012-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 1 12 2012-11-20 Tony Chang <tony@chromium.org> 2 13 -
trunk/Source/WebCore/platform/network/curl/AuthenticationChallenge.h
r95901 r135317 38 38 } 39 39 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) 41 41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error) 42 42 { 43 m_identifier = identifier; 43 44 } 44 45 45 46 AuthenticationClient* authenticationClient() const { return m_authenticationClient.get(); } 47 void setAuthenticationClient(AuthenticationClient* client) { m_authenticationClient = client; } 46 48 47 49 RefPtr<AuthenticationClient> m_authenticationClient;
Note:
See TracChangeset
for help on using the changeset viewer.