Changeset 197992 in webkit


Ignore:
Timestamp:
Mar 10, 2016 9:01:06 PM (8 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r197976): Build failure due to missing DDOptionalSource.h header

Follow-up fix for:

Expose additional WKDataDetectorTypes.
<https://bugs.webkit.org/show_bug.cgi?id=155331>

  • platform/spi/cocoa/DataDetectorsCoreSPI.h: Protect

DDOptionalSource.h with version check.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r197991 r197992  
     12016-03-10  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r197976): Build failure due to missing DDOptionalSource.h header
     4
     5        Follow-up fix for:
     6            Expose additional WKDataDetectorTypes.
     7            <https://bugs.webkit.org/show_bug.cgi?id=155331>
     8
     9        * platform/spi/cocoa/DataDetectorsCoreSPI.h: Protect
     10        DDOptionalSource.h with version check.
     11
    1122016-03-10  Alex Christensen  <achristensen@webkit.org>
    213
  • trunk/Source/WebCore/platform/spi/cocoa/DataDetectorsCoreSPI.h

    r197976 r197992  
    3333#import <DataDetectorsCore/DataDetectorsCore.h>
    3434#if PLATFORM(IOS)
     35#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 100000
    3536#import <DataDetectorsCore/DDOptionalSource.h>
     37#endif
    3638#import <DataDetectorsCore/DDURLifier.h>
    3739#endif
Note: See TracChangeset for help on using the changeset viewer.