Title: [171171] trunk/Source/WebKit2
Revision
171171
Author
[email protected]
Date
2014-07-16 20:31:38 -0700 (Wed, 16 Jul 2014)

Log Message

Reintroduce the SPI _websiteDataURLForContainerWithURL: that was removed in r171160
https://bugs.webkit.org/show_bug.cgi?id=134984

Reviewed by David Kilzer.

* UIProcess/API/Cocoa/WKProcessPool.mm:
(+[WKProcessPool _websiteDataURLForContainerWithURL:]):
* UIProcess/API/Cocoa/WKProcessPoolPrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (171170 => 171171)


--- trunk/Source/WebKit2/ChangeLog	2014-07-17 03:04:11 UTC (rev 171170)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-17 03:31:38 UTC (rev 171171)
@@ -1,3 +1,14 @@
+2014-07-16  Brady Eidson  <[email protected]>
+
+        Reintroduce the SPI _websiteDataURLForContainerWithURL: that was removed in r171160
+        https://bugs.webkit.org/show_bug.cgi?id=134984
+
+        Reviewed by David Kilzer.
+
+        * UIProcess/API/Cocoa/WKProcessPool.mm:
+        (+[WKProcessPool _websiteDataURLForContainerWithURL:]):
+        * UIProcess/API/Cocoa/WKProcessPoolPrivate.h:
+
 2014-07-16  Alexey Proskuryakov  <[email protected]>
 
         A test that hangs at cleanup stage confuses webkitpy hugely

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPool.mm (171170 => 171171)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPool.mm	2014-07-17 03:04:11 UTC (rev 171170)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPool.mm	2014-07-17 03:31:38 UTC (rev 171171)
@@ -105,6 +105,11 @@
 
 @implementation WKProcessPool (WKPrivate)
 
++ (NSURL *)_websiteDataURLForContainerWithURL:(NSURL *)containerURL
+{
+    return [WKProcessPool _websiteDataURLForContainerWithURL:containerURL bundleIdentifierIfNotInContainer:nil];
+}
+
 + (NSURL *)_websiteDataURLForContainerWithURL:(NSURL *)containerURL bundleIdentifierIfNotInContainer:(NSString *)bundleIdentifier
 {
     NSURL *url = "" URLByAppendingPathComponent:@"Library" isDirectory:YES];

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPoolPrivate.h (171170 => 171171)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPoolPrivate.h	2014-07-17 03:04:11 UTC (rev 171170)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKProcessPoolPrivate.h	2014-07-17 03:31:38 UTC (rev 171171)
@@ -44,6 +44,7 @@
 
 @property (nonatomic, weak, setter=_setDownloadDelegate:) id <_WKDownloadDelegate> _downloadDelegate;
 
++ (NSURL *)_websiteDataURLForContainerWithURL:(NSURL *)containerURL;
 + (NSURL *)_websiteDataURLForContainerWithURL:(NSURL *)containerURL bundleIdentifierIfNotInContainer:(NSString *)bundleIdentifier;
 
 @end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to