Changeset 212256 in webkit


Ignore:
Timestamp:
Feb 13, 2017 3:26:46 PM (7 years ago)
Author:
beidson@apple.com
Message:

Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
https://bugs.webkit.org/show_bug.cgi?id=168124

Reviewed by Geoffrey Garen.

Source/WebKit2:

  • UIProcess/Cocoa/VersionChecks.h:

Source/WTF:

  • wtf/spi/darwin/dyldSPI.h:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r212235 r212256  
     12017-02-13  Brady Eidson  <beidson@apple.com>
     2
     3        Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
     4        https://bugs.webkit.org/show_bug.cgi?id=168124
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * wtf/spi/darwin/dyldSPI.h:
     9
    1102017-02-13  Myles C. Maxfield  <mmaxfield@apple.com>
    211
  • trunk/Source/WTF/wtf/spi/darwin/dyldSPI.h

    r212000 r212256  
    3838#endif
    3939
    40 #ifndef DYLD_IOS_VERSION_10_3
    41 #define DYLD_IOS_VERSION_10_3 0x000A0300
     40#ifndef DYLD_IOS_VERSION_11_0
     41#define DYLD_IOS_VERSION_11_0 0x000B0000
    4242#endif
    4343
    44 #ifndef DYLD_MACOSX_VERSION_10_12_4
    45 #define DYLD_MACOSX_VERSION_10_12_4 0x000A0C04
     44#ifndef DYLD_MACOSX_VERSION_10_13
     45#define DYLD_MACOSX_VERSION_10_13 0x000A0D00
    4646#endif
    4747
     
    5555#define DYLD_IOS_VERSION_9_0 0x00090000
    5656#define DYLD_IOS_VERSION_10_0 0x000A0000
    57 #define DYLD_IOS_VERSION_10_3 0x000A0300
     57#define DYLD_IOS_VERSION_11_0 0x000B0000
    5858
    5959#define DYLD_MACOSX_VERSION_10_11 0x000A0B00
    6060#define DYLD_MACOSX_VERSION_10_12 0x000A0C00
    61 #define DYLD_MACOSX_VERSION_10_12_4 0x000A0C04
     61#define DYLD_MACOSX_VERSION_10_13 0x000A0D00
    6262
    6363#endif
  • trunk/Source/WebKit2/ChangeLog

    r212254 r212256  
     12017-02-13  Brady Eidson  <beidson@apple.com>
     2
     3        Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
     4        https://bugs.webkit.org/show_bug.cgi?id=168124
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * UIProcess/Cocoa/VersionChecks.h:
     9
    1102017-02-13  Wenson Hsieh  <wenson_hsieh@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/Cocoa/VersionChecks.h

    r212134 r212256  
    3434    FirstWithNetworkCache = DYLD_IOS_VERSION_9_0,
    3535    FirstWithMediaTypesRequiringUserActionForPlayback = DYLD_IOS_VERSION_10_0,
    36     FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_IOS_VERSION_10_3,
     36    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_IOS_VERSION_11_0,
    3737#elif PLATFORM(MAC)
    3838    FirstWithNetworkCache = DYLD_MACOSX_VERSION_10_11,
    39     FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_MACOSX_VERSION_10_12_4,
     39    FirstWithExceptionsForDuplicateCompletionHandlerCalls = DYLD_MACOSX_VERSION_10_13,
    4040#endif
    4141};
Note: See TracChangeset for help on using the changeset viewer.