Title: [217136] trunk/Tools
Revision
217136
Author
wenson_hs...@apple.com
Date
2017-05-19 11:41:22 -0700 (Fri, 19 May 2017)

Log Message

Unreviewed, fix the build on the latest internal SDK.

* TestWebKitAPI/Tests/ios/DataInteractionTests.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (217135 => 217136)


--- trunk/Tools/ChangeLog	2017-05-19 18:36:55 UTC (rev 217135)
+++ trunk/Tools/ChangeLog	2017-05-19 18:41:22 UTC (rev 217136)
@@ -1,3 +1,10 @@
+2017-05-19  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Unreviewed, fix the build on the latest internal SDK.
+
+        * TestWebKitAPI/Tests/ios/DataInteractionTests.mm:
+        (TestWebKitAPI::TEST):
+
 2017-05-19  Filip Pizlo  <fpi...@apple.com>
 
         arrayProtoPrivateFuncConcatMemcpy needs to be down with firstArray being undecided

Modified: trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm (217135 => 217136)


--- trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm	2017-05-19 18:36:55 UTC (rev 217135)
+++ trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm	2017-05-19 18:41:22 UTC (rev 217136)
@@ -283,7 +283,8 @@
 
     __block bool doneLoadingURL = false;
     UIItemProvider *sourceItemProvider = [dataInteractionSimulator sourceItemProviders].firstObject;
-    [sourceItemProvider loadObjectOfClass:[NSURL class] completionHandler:^(NSURL *url, NSError *error) {
+    [sourceItemProvider loadObjectOfClass:[NSURL class] completionHandler:^(id object, NSError *error) {
+        NSURL *url = ""
         EXPECT_WK_STREQ("Hello world", url._title.UTF8String ?: "");
         doneLoadingURL = true;
     }];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to