Changeset 171608 in webkit


Ignore:
Timestamp:
Jul 25, 2014, 12:08:22 PM (11 years ago)
Author:
mitz@apple.com
Message:

[Mac] Unneeded MobileMe workaround in ResourceHandle::receivedCredential
https://bugs.webkit.org/show_bug.cgi?id=135297

Reviewed by Alexey Proskuryakov.

  • platform/network/mac/ResourceHandleMac.mm:

(WebCore::ResourceHandle::receivedCredential): Removed the site-specific behavior for
gallery.me.com.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r171607 r171608  
     12014-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
    1122014-07-25  Commit Queue  <commit-queue@webkit.org>
    213
  • trunk/Source/WebCore/platform/network/mac/ResourceHandleMac.mm

    r171540 r171608  
    651651    }
    652652
    653     if (credential.persistence() == CredentialPersistenceForSession && (!d->m_needsSiteSpecificQuirks || ![[[mac(challenge) protectionSpace] host] isEqualToString:@"gallery.me.com"])) {
     653    if (credential.persistence() == CredentialPersistenceForSession) {
    654654        // Manage per-session credentials internally, because once NSURLCredentialPersistenceForSession is used, there is no way
    655655        // 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.
    657656        Credential webCredential(credential, CredentialPersistenceNone);
    658657        URL urlToStore;
Note: See TracChangeset for help on using the changeset viewer.