Changeset 171608 in webkit
- Timestamp:
- Jul 25, 2014, 12:08:22 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r171607 r171608 1 2014-07-25 Dan Bernstein <mitz@apple.com> 2 3 [Mac] Unneeded MobileMe workaround in ResourceHandle::receivedCredential 4 https://bugs.webkit.org/show_bug.cgi?id=135297 5 6 Reviewed by Alexey Proskuryakov. 7 8 * platform/network/mac/ResourceHandleMac.mm: 9 (WebCore::ResourceHandle::receivedCredential): Removed the site-specific behavior for 10 gallery.me.com. 11 1 12 2014-07-25 Commit Queue <commit-queue@webkit.org> 2 13 -
trunk/Source/WebCore/platform/network/mac/ResourceHandleMac.mm
r171540 r171608 651 651 } 652 652 653 if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {653 if (credential.persistence() == CredentialPersistenceForSession) { 654 654 // Manage per-session credentials internally, because once NSURLCredentialPersistenceForSession is used, there is no way 655 655 // to ignore it for a particular request (short of removing it altogether). 656 // <rdar://problem/6867598> gallery.me.com is temporarily whitelisted, so that QuickTime plug-in could see the credentials.657 656 Credential webCredential(credential, CredentialPersistenceNone); 658 657 URL urlToStore;
Note:
See TracChangeset
for help on using the changeset viewer.