Changeset 154891 in webkit


Ignore:
Timestamp:
Aug 30, 2013 9:45:58 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

Add USE(CFNETWORK) guard to SynchronousLoaderClient::didReceiveAuthenticationChallengedidReceiveAuthenticationChallenge()
https://bugs.webkit.org/show_bug.cgi?id=120532

Reviewed by Darin Adler.

  • platform/network/SynchronousLoaderClient.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r154890 r154891  
     12013-08-30  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Add USE(CFNETWORK) guard to SynchronousLoaderClient::didReceiveAuthenticationChallengedidReceiveAuthenticationChallenge()
     4        https://bugs.webkit.org/show_bug.cgi?id=120532
     5
     6        Reviewed by Darin Adler.
     7
     8        * platform/network/SynchronousLoaderClient.h:
     9
    1102013-08-30  Brent Fulgham  <bfulgham@apple.com>
    211
  • trunk/Source/WebCore/platform/network/SynchronousLoaderClient.h

    r154183 r154891  
    5959    virtual void willSendRequest(ResourceHandle*, ResourceRequest&, const ResourceResponse& /*redirectResponse*/) OVERRIDE;
    6060    virtual bool shouldUseCredentialStorage(ResourceHandle*) OVERRIDE;
     61#if USE(CFNETWORK)
    6162    virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) OVERRIDE;
     63#endif
    6264    virtual void didReceiveResponse(ResourceHandle*, const ResourceResponse&) OVERRIDE;
    6365    virtual void didReceiveData(ResourceHandle*, const char*, int, int /*encodedDataLength*/) OVERRIDE;
Note: See TracChangeset for help on using the changeset viewer.