Title: [154891] trunk/Source/WebCore
Revision
154891
Author
[email protected]
Date
2013-08-30 09:45:58 -0700 (Fri, 30 Aug 2013)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154890 => 154891)


--- trunk/Source/WebCore/ChangeLog	2013-08-30 16:44:00 UTC (rev 154890)
+++ trunk/Source/WebCore/ChangeLog	2013-08-30 16:45:58 UTC (rev 154891)
@@ -1,3 +1,12 @@
+2013-08-30  Csaba Osztrogonác  <[email protected]>
+
+        Add USE(CFNETWORK) guard to SynchronousLoaderClient::didReceiveAuthenticationChallengedidReceiveAuthenticationChallenge()
+        https://bugs.webkit.org/show_bug.cgi?id=120532
+
+        Reviewed by Darin Adler.
+
+        * platform/network/SynchronousLoaderClient.h:
+
 2013-08-30  Brent Fulgham  <[email protected]>
 
         [Windows] Video inside page always uses non-hardware accelerated playback

Modified: trunk/Source/WebCore/platform/network/SynchronousLoaderClient.h (154890 => 154891)


--- trunk/Source/WebCore/platform/network/SynchronousLoaderClient.h	2013-08-30 16:44:00 UTC (rev 154890)
+++ trunk/Source/WebCore/platform/network/SynchronousLoaderClient.h	2013-08-30 16:45:58 UTC (rev 154891)
@@ -58,7 +58,9 @@
 
     virtual void willSendRequest(ResourceHandle*, ResourceRequest&, const ResourceResponse& /*redirectResponse*/) OVERRIDE;
     virtual bool shouldUseCredentialStorage(ResourceHandle*) OVERRIDE;
+#if USE(CFNETWORK)
     virtual void didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&) OVERRIDE;
+#endif
     virtual void didReceiveResponse(ResourceHandle*, const ResourceResponse&) OVERRIDE;
     virtual void didReceiveData(ResourceHandle*, const char*, int, int /*encodedDataLength*/) OVERRIDE;
     virtual void didFinishLoading(ResourceHandle*, double /*finishTime*/) OVERRIDE;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to