Changeset 176451 in webkit
- Timestamp:
- Nov 21, 2014, 9:05:19 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/spi/cf/CFNetworkSPI.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176450 r176451 1 2014-11-21 Daniel Bates <dabates@apple.com> 2 3 Attempt to fix the internal Apple Mavericks build after <https://trac.webkit.org/changeset/176448> 4 (https://bugs.webkit.org/show_bug.cgi?id=138930) 5 6 Declare NSCachedURLResponse SPI when building without the Apple Internal SDK and with the Apple 7 Internal SDK when building for OS X Mavericks or earlier. 8 9 * platform/spi/cf/CFNetworkSPI.h: 10 1 11 2014-11-21 Anders Carlsson <andersca@apple.com> 2 12 -
trunk/Source/WebCore/platform/spi/cf/CFNetworkSPI.h
r176448 r176451 62 62 #endif 63 63 64 #ifdef __OBJC__65 @interface NSCachedURLResponse (Details)66 -(id)_initWithCFCachedURLResponse:(CFCachedURLResponseRef)cachedResponse;67 -(CFCachedURLResponseRef)_CFCachedURLResponse;68 @end69 #endif70 71 64 #endif // PLATFORM(WIN) || USE(APPLE_INTERNAL_SDK) 72 65 … … 108 101 NSHTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain = 3, 109 102 }; 103 104 @interface NSCachedURLResponse (Details) 105 -(id)_initWithCFCachedURLResponse:(CFCachedURLResponseRef)cachedResponse; 106 -(CFCachedURLResponseRef)_CFCachedURLResponse; 107 @end 110 108 #endif 111 109
Note:
See TracChangeset
for help on using the changeset viewer.