⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176451 in webkit


Ignore:
Timestamp:
Nov 21, 2014, 9:05:19 AM (12 years ago)
Author:
dbates@webkit.org
Message:

Attempt to fix the internal Apple Mavericks build after <https://trac.webkit.org/changeset/176448>
(https://bugs.webkit.org/show_bug.cgi?id=138930)

Declare NSCachedURLResponse SPI when building without the Apple Internal SDK and with the Apple
Internal SDK when building for OS X Mavericks or earlier.

  • platform/spi/cf/CFNetworkSPI.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r176450 r176451  
     12014-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
    1112014-11-21  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebCore/platform/spi/cf/CFNetworkSPI.h

    r176448 r176451  
    6262#endif
    6363
    64 #ifdef __OBJC__
    65 @interface NSCachedURLResponse (Details)
    66 -(id)_initWithCFCachedURLResponse:(CFCachedURLResponseRef)cachedResponse;
    67 -(CFCachedURLResponseRef)_CFCachedURLResponse;
    68 @end
    69 #endif
    70 
    7164#endif // PLATFORM(WIN) || USE(APPLE_INTERNAL_SDK)
    7265
     
    108101    NSHTTPCookieAcceptPolicyExclusivelyFromMainDocumentDomain = 3,
    109102};
     103
     104@interface NSCachedURLResponse (Details)
     105-(id)_initWithCFCachedURLResponse:(CFCachedURLResponseRef)cachedResponse;
     106-(CFCachedURLResponseRef)_CFCachedURLResponse;
     107@end
    110108#endif
    111109
Note: See TracChangeset for help on using the changeset viewer.