Changeset 212506 in webkit


Ignore:
Timestamp:
Feb 16, 2017 4:57:05 PM (7 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r212256. rdar://problem/30313696

Location:
branches/safari-603-branch/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-603-branch/Source/WTF/ChangeLog

    r212493 r212506  
     12017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r212256. rdar://problem/30313696
     4
     5    2017-02-13  Brady Eidson  <beidson@apple.com>
     6
     7            Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
     8            https://bugs.webkit.org/show_bug.cgi?id=168124
     9
     10            Reviewed by Geoffrey Garen.
     11
     12            * wtf/spi/darwin/dyldSPI.h:
     13
    1142017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
    215
  • branches/safari-603-branch/Source/WTF/wtf/spi/darwin/dyldSPI.h

    r212493 r212506  
    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
  • branches/safari-603-branch/Source/WebKit2/ChangeLog

    r212505 r212506  
     12017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r212256. rdar://problem/30313696
     4
     5    2017-02-13  Brady Eidson  <beidson@apple.com>
     6
     7            Followup to: Replace all WebKit Library Version checks in WK2 with SDK version checks.
     8            https://bugs.webkit.org/show_bug.cgi?id=168124
     9
     10            Reviewed by Geoffrey Garen.
     11
     12            * UIProcess/Cocoa/VersionChecks.h:
     13
    1142017-02-16  Matthew Hanson  <matthew_hanson@apple.com>
    215
  • branches/safari-603-branch/Source/WebKit2/UIProcess/Cocoa/VersionChecks.h

    r212505 r212506  
    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.