Title: [161778] trunk/Source/WebCore
- Revision
- 161778
- Author
- [email protected]
- Date
- 2014-01-11 12:59:11 -0800 (Sat, 11 Jan 2014)
Log Message
Work around USE(CFNETWORK) build failure on iOS.
* platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::shouldWaitForResponseToAuthenticationChallenge):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (161777 => 161778)
--- trunk/Source/WebCore/ChangeLog 2014-01-11 20:56:27 UTC (rev 161777)
+++ trunk/Source/WebCore/ChangeLog 2014-01-11 20:59:11 UTC (rev 161778)
@@ -1,5 +1,12 @@
2014-01-11 Simon Fraser <[email protected]>
+ Work around USE(CFNETWORK) build failure on iOS.
+
+ * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
+ (WebCore::MediaPlayerPrivateAVFoundationObjC::shouldWaitForResponseToAuthenticationChallenge):
+
+2014-01-11 Simon Fraser <[email protected]>
+
Fix LegacyWebArchive.cpp:567:91: error: calling 'utf8' with incomplete return type 'WTF::CString'
* loader/archive/cf/LegacyWebArchive.cpp:
Modified: trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm (161777 => 161778)
--- trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2014-01-11 20:56:27 UTC (rev 161777)
+++ trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm 2014-01-11 20:59:11 UTC (rev 161778)
@@ -1031,9 +1031,15 @@
bool MediaPlayerPrivateAVFoundationObjC::shouldWaitForResponseToAuthenticationChallenge(NSURLAuthenticationChallenge* nsChallenge)
{
+#if USE(CFNETWORK)
+ UNUSED_PARAM(nsChallenge);
+ // FIXME: <rdar://problem/15799844>
+ return false;
+#else
AuthenticationChallenge challenge(nsChallenge);
return player()->shouldWaitForResponseToAuthenticationChallenge(challenge);
+#endif
}
void MediaPlayerPrivateAVFoundationObjC::didCancelLoadingRequest(AVAssetResourceLoadingRequest* avRequest)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes