Title: [199559] trunk/Source/WebKit2
Revision
199559
Author
[email protected]
Date
2016-04-14 15:14:51 -0700 (Thu, 14 Apr 2016)

Log Message

Try to fix the Yosemite build.

* UIProcess/Cocoa/UIDelegate.mm:
(WebKit::UIDelegate::UIClient::runOpenPanel):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (199558 => 199559)


--- trunk/Source/WebKit2/ChangeLog	2016-04-14 22:07:00 UTC (rev 199558)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-14 22:14:51 UTC (rev 199559)
@@ -1,5 +1,12 @@
 2016-04-14  Anders Carlsson  <[email protected]>
 
+        Try to fix the Yosemite build.
+
+        * UIProcess/Cocoa/UIDelegate.mm:
+        (WebKit::UIDelegate::UIClient::runOpenPanel):
+
+2016-04-14  Anders Carlsson  <[email protected]>
+
         [Mac] Add API for open panel handling to WKWebView
         https://bugs.webkit.org/show_bug.cgi?id=137759
         rdar://problem/23278623

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm (199558 => 199559)


--- trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm	2016-04-14 22:07:00 UTC (rev 199558)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/UIDelegate.mm	2016-04-14 22:14:51 UTC (rev 199559)
@@ -272,7 +272,7 @@
 
     RefPtr<CompletionHandlerCallChecker> checker = CompletionHandlerCallChecker::create(delegate.get(), @selector(webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:));
 
-    [delegate webView:m_uiDelegate.m_webView runOpenPanelWithParameters:wrapper(*openPanelParameters) initiatedByFrame:wrapper(frame) completionHandler:[checker, resultListener](NSArray<NSURL *> *URLs) {
+    [delegate webView:m_uiDelegate.m_webView runOpenPanelWithParameters:wrapper(*openPanelParameters) initiatedByFrame:wrapper(frame) completionHandler:[checker, resultListener](NSArray *URLs) {
         checker->didCallCompletionHandler();
 
         if (!URLs) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to