Title: [197978] trunk/Source/WebCore
Revision
197978
Author
[email protected]
Date
2016-03-10 17:34:11 -0800 (Thu, 10 Mar 2016)

Log Message

Fix the build again.

* editing/cocoa/DataDetection.mm:
(WebCore::constructURLStringForResult):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197977 => 197978)


--- trunk/Source/WebCore/ChangeLog	2016-03-11 01:32:12 UTC (rev 197977)
+++ trunk/Source/WebCore/ChangeLog	2016-03-11 01:34:11 UTC (rev 197978)
@@ -1,5 +1,12 @@
 2016-03-10  Tim Horton  <[email protected]>
 
+        Fix the build again.
+
+        * editing/cocoa/DataDetection.mm:
+        (WebCore::constructURLStringForResult):
+
+2016-03-10  Tim Horton  <[email protected]>
+
         Fix the build.
 
         * editing/cocoa/DataDetection.mm:

Modified: trunk/Source/WebCore/editing/cocoa/DataDetection.mm (197977 => 197978)


--- trunk/Source/WebCore/editing/cocoa/DataDetection.mm	2016-03-11 01:32:12 UTC (rev 197977)
+++ trunk/Source/WebCore/editing/cocoa/DataDetection.mm	2016-03-11 01:34:11 UTC (rev 197978)
@@ -204,7 +204,9 @@
     if (((detectionTypes & DataDetectorTypeAddress) && (DDResultCategoryAddress == category))
         || ((detectionTypes & DataDetectorTypeTrackingNumber) && (CFStringCompare(get_DataDetectorsCore_DDBinderTrackingNumberKey(), type, 0) == kCFCompareEqualTo))
         || ((detectionTypes & DataDetectorTypeFlightNumber) && (CFStringCompare(get_DataDetectorsCore_DDBinderFlightInformationKey(), type, 0) == kCFCompareEqualTo))
+#if USE(APPLE_INTERNAL_SDK)
         || ((detectionTypes & DataDetectorTypeSpotlightSuggestion) && (CFStringCompare(DDBinderSpotlightSourceKey, type, 0) == kCFCompareEqualTo))
+#endif
         || ((detectionTypes & DataDetectorTypePhoneNumber) && (DDResultCategoryPhoneNumber == category))
         || ((detectionTypes & DataDetectorTypeLink) && resultIsURL(currentResult))) {
         
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to