Title: [248163] trunk/Tools
Revision
248163
Author
achristen...@apple.com
Date
2019-08-02 11:27:13 -0700 (Fri, 02 Aug 2019)

Log Message

Fix API test after r248139
https://bugs.webkit.org/show_bug.cgi?id=200102

* TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLsPlugin.mm:
(-[AdditionalReadAccessAllowedURLsPlugIn webProcessPlugIn:didCreateBrowserContextController:]):
This was supposed to be removed as part of reverting r245322.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (248162 => 248163)


--- trunk/Tools/ChangeLog	2019-08-02 18:16:52 UTC (rev 248162)
+++ trunk/Tools/ChangeLog	2019-08-02 18:27:13 UTC (rev 248163)
@@ -1,3 +1,12 @@
+2019-08-02  Alex Christensen  <achristen...@webkit.org>
+
+        Fix API test after r248139
+        https://bugs.webkit.org/show_bug.cgi?id=200102
+
+        * TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLsPlugin.mm:
+        (-[AdditionalReadAccessAllowedURLsPlugIn webProcessPlugIn:didCreateBrowserContextController:]):
+        This was supposed to be removed as part of reverting r245322.
+
 2019-08-01  Zhifei Fang  <zhifei_f...@apple.com>
 
         results.webkit.org: Force update cache when timeline updated

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLsPlugin.mm (248162 => 248163)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLsPlugin.mm	2019-08-02 18:16:52 UTC (rev 248162)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AdditionalReadAccessAllowedURLsPlugin.mm	2019-08-02 18:27:13 UTC (rev 248163)
@@ -52,13 +52,6 @@
 
     _interface = [_WKRemoteObjectInterface remoteObjectInterfaceWithProtocol:@protocol(AdditionalReadAccessAllowedURLsProtocol)];
     [[browserContextController _remoteObjectRegistry] registerExportedObject:self interface:_interface.get()];
-
-    __block bool blockCalled = false;
-    NSFileCoordinator *coordinator = [[NSFileCoordinator alloc] initWithFilePresenter:nil];
-    [coordinator coordinateReadingItemAtURL:[NSURL fileURLWithPath:@"/Applications/Safari.app"] options:NSFileCoordinatorReadingWithoutChanges error:nil byAccessor:^(NSURL *newURL) {
-        blockCalled = true;
-    }];
-    ASSERT(blockCalled);
 }
 
 - (void)dealloc
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to