Title: [202533] trunk/Source/WebCore
Revision
202533
Author
[email protected]
Date
2016-06-27 19:00:59 -0700 (Mon, 27 Jun 2016)

Log Message

Unreviewed, rolling out r202436.
https://bugs.webkit.org/show_bug.cgi?id=159190

We don't need to make this change. (Requested by thorton on
#webkit).

Reverted changeset:

"Do not use iOS specific telephone detection on macOS."
https://bugs.webkit.org/show_bug.cgi?id=159096
http://trac.webkit.org/changeset/202436

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202532 => 202533)


--- trunk/Source/WebCore/ChangeLog	2016-06-28 01:44:41 UTC (rev 202532)
+++ trunk/Source/WebCore/ChangeLog	2016-06-28 02:00:59 UTC (rev 202533)
@@ -1,3 +1,17 @@
+2016-06-27  Commit Queue  <[email protected]>
+
+        Unreviewed, rolling out r202436.
+        https://bugs.webkit.org/show_bug.cgi?id=159190
+
+        We don't need to make this change. (Requested by thorton on
+        #webkit).
+
+        Reverted changeset:
+
+        "Do not use iOS specific telephone detection on macOS."
+        https://bugs.webkit.org/show_bug.cgi?id=159096
+        http://trac.webkit.org/changeset/202436
+
 2016-06-27  Benjamin Poulain  <[email protected]>
 
         Adopt the iOS TouchEventHandler API for cases that must have synchronous dispatch

Modified: trunk/Source/WebCore/platform/cocoa/TelephoneNumberDetectorCocoa.cpp (202532 => 202533)


--- trunk/Source/WebCore/platform/cocoa/TelephoneNumberDetectorCocoa.cpp	2016-06-28 01:44:41 UTC (rev 202532)
+++ trunk/Source/WebCore/platform/cocoa/TelephoneNumberDetectorCocoa.cpp	2016-06-28 02:00:59 UTC (rev 202533)
@@ -47,7 +47,6 @@
 
 static DDDFAScannerRef phoneNumbersScanner()
 {
-#if PLATFORM(IOS)
     if (!DataDetectorsCoreLibrary())
         return nullptr;
 
@@ -57,9 +56,6 @@
 
     static DDDFAScannerRef scanner = DDDFAScannerCreateFromCache(cache);
     return scanner;
-#else
-    return nullptr;
-#endif
 }
 
 bool isSupported()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to