Changeset 171599 in webkit
- Timestamp:
- Jul 25, 2014, 9:39:59 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r171593 r171599 1 2014-07-25 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] WebProtectionSpace::receivesCredentialSecurely incorrectly returns false in some cases 4 https://bugs.webkit.org/show_bug.cgi?id=135241 5 6 Reviewed by Alexey Proskuryakov. 7 8 * WebCore.exp.in: Export ProtectionSpace::receivesCredentialSecurely. 9 10 * platform/network/cocoa/ProtectionSpaceCocoa.h: Declare override of receivesCredentialSecurely. 11 * platform/network/cocoa/ProtectionSpaceCocoa.mm: 12 (WebCore::ProtectionSpace::receivesCredentialSecurely): Use -[NSURLProtectionSpace receivesCredentialSecurely]. 13 1 14 2014-07-25 Zalan Bujtas <zalan@apple.com> 2 15 -
trunk/Source/WebCore/WebCore.exp.in
r171574 r171599 1743 1743 __ZNK7WebCore15GraphicsLayerCA49platformCALayerShouldTemporarilyRetainTileCohortsEPNS_15PlatformCALayerE 1744 1744 __ZNK7WebCore15ProgressTracker17estimatedProgressEv 1745 __ZNK7WebCore15ProtectionSpace26receivesCredentialSecurelyEv 1745 1746 __ZNK7WebCore15ProtectionSpace7nsSpaceEv 1746 1747 __ZNK7WebCore15ResourceRequest12cfURLRequestENS_20HTTPBodyUpdatePolicyE … … 1804 1805 __ZNK7WebCore19ProtectionSpaceBase10serverTypeEv 1805 1806 __ZNK7WebCore19ProtectionSpaceBase20authenticationSchemeEv 1806 __ZNK7WebCore19ProtectionSpaceBase26receivesCredentialSecurelyEv1807 1807 __ZNK7WebCore19ProtectionSpaceBase4hostEv 1808 1808 __ZNK7WebCore19ProtectionSpaceBase4portEv -
trunk/Source/WebCore/platform/network/cocoa/ProtectionSpaceCocoa.h
r171540 r171599 59 59 #endif 60 60 61 bool receivesCredentialSecurely() const; 62 61 63 #if USE(CFNETWORK) 62 64 CFURLProtectionSpaceRef cfSpace() const; -
trunk/Source/WebCore/platform/network/cocoa/ProtectionSpaceCocoa.mm
r171540 r171599 196 196 } 197 197 198 bool ProtectionSpace::receivesCredentialSecurely() const 199 { 200 return nsSpace().receivesCredentialSecurely; 201 } 202 198 203 #if PLATFORM(IOS) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 199 204 bool ProtectionSpace::encodingRequiresPlatformData(NSURLProtectionSpace *space)
Note:
See TracChangeset
for help on using the changeset viewer.