Changeset 162999 in webkit
- Timestamp:
- Jan 28, 2014, 8:44:56 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r162998 r162999 1 2014-01-28 Jer Noble <jer.noble@apple.com> 2 3 [Mac] Handle NSURLAuthenticationMethodServerTrust challenges from -resourceLoader:shouldWaitForResponseToAuthenticationChallenge: 4 https://bugs.webkit.org/show_bug.cgi?id=127806 5 6 Reviewed by Eric Carlson. 7 8 In addition to the normal "user/password" NSURLAuthenticationChallenges, the 9 -resourceLoader:shouldWaitForResponseToAuthenticationChallenge: delegate method will 10 ask us to confirm server certificate chains. Rather than pop up an authentication 11 dialog (which won't work anyway) we will now just drop such requests and continue 12 on normally. 13 14 * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: 15 (-[WebCoreAVFLoaderDelegate resourceLoader:shouldWaitForResponseToAuthenticationChallenge:]): 16 1 17 2014-01-28 Commit Queue <commit-queue@webkit.org> 2 18 -
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm
r162879 r162999 2102 2102 return NO; 2103 2103 2104 if ([[[challenge protectionSpace] authenticationMethod] isEqualToString:NSURLAuthenticationMethodServerTrust]) 2105 return NO; 2106 2104 2107 RetainPtr<WebCoreAVFLoaderDelegate> strongSelf = self; 2105 2108 RetainPtr<NSURLAuthenticationChallenge> strongChallenge = challenge;
Note:
See TracChangeset
for help on using the changeset viewer.