Title: [200669] trunk/Tools
Revision
200669
Author
[email protected]
Date
2016-05-10 20:57:13 -0700 (Tue, 10 May 2016)

Log Message

Tried to fix the Mac build after r200668.

* WebKitTestRunner/cocoa/TestControllerCocoa.mm:
(WTR::TestController::platformCreateWebView):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (200668 => 200669)


--- trunk/Tools/ChangeLog	2016-05-11 03:37:30 UTC (rev 200668)
+++ trunk/Tools/ChangeLog	2016-05-11 03:57:13 UTC (rev 200669)
@@ -1,3 +1,10 @@
+2016-05-10  Dan Bernstein  <[email protected]>
+
+        Tried to fix the Mac build after r200668.
+
+        * WebKitTestRunner/cocoa/TestControllerCocoa.mm:
+        (WTR::TestController::platformCreateWebView):
+
 2016-05-10  Sam Weinig  <[email protected]>
 
         Tweak underline style for data detected links

Modified: trunk/Tools/WebKitTestRunner/cocoa/TestControllerCocoa.mm (200668 => 200669)


--- trunk/Tools/WebKitTestRunner/cocoa/TestControllerCocoa.mm	2016-05-11 03:37:30 UTC (rev 200668)
+++ trunk/Tools/WebKitTestRunner/cocoa/TestControllerCocoa.mm	2016-05-11 03:57:13 UTC (rev 200669)
@@ -82,8 +82,10 @@
 {
 #if WK_API_ENABLED
     RetainPtr<WKWebViewConfiguration> copiedConfiguration = adoptNS([globalWebViewConfiguration copy]);
+#if TARGET_OS_IPHONE
     if (options.useDataDetection)
         [copiedConfiguration setDataDetectorTypes:WKDataDetectorTypeAll];
+#endif
 
     m_mainWebView = std::make_unique<PlatformWebView>(copiedConfiguration.get(), options);
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to