Title: [259350] trunk/Source/WebKit
Revision
259350
Author
commit-qu...@webkit.org
Date
2020-04-01 09:21:37 -0700 (Wed, 01 Apr 2020)

Log Message

Deprecate WKWebsiteDataStore._indexedDBDatabaseDirectory
https://bugs.webkit.org/show_bug.cgi?id=209243

Patch by Alex Christensen <achristen...@webkit.org> on 2020-04-01
Reviewed by David Kilzer.

Luckily it's read-only, but we have a way to get the configuration, so let's encourage that instead.

* UIProcess/API/Cocoa/WKWebsiteDataStorePrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (259349 => 259350)


--- trunk/Source/WebKit/ChangeLog	2020-04-01 16:18:50 UTC (rev 259349)
+++ trunk/Source/WebKit/ChangeLog	2020-04-01 16:21:37 UTC (rev 259350)
@@ -1,3 +1,14 @@
+2020-04-01  Alex Christensen  <achristen...@webkit.org>
+
+        Deprecate WKWebsiteDataStore._indexedDBDatabaseDirectory
+        https://bugs.webkit.org/show_bug.cgi?id=209243
+
+        Reviewed by David Kilzer.
+
+        Luckily it's read-only, but we have a way to get the configuration, so let's encourage that instead.
+
+        * UIProcess/API/Cocoa/WKWebsiteDataStorePrivate.h:
+
 2020-04-01  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Make WebPasteboardProxy::didModifyContentsOfPasteboard robust when pasteboardName is null

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebsiteDataStorePrivate.h (259349 => 259350)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebsiteDataStorePrivate.h	2020-04-01 16:18:50 UTC (rev 259349)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebsiteDataStorePrivate.h	2020-04-01 16:21:37 UTC (rev 259350)
@@ -56,8 +56,8 @@
 @property (nonatomic, setter=_setAllowsCellularAccess:) BOOL _allowsCellularAccess WK_API_DEPRECATED_WITH_REPLACEMENT("_WKWebsiteDataStoreConfiguration.allowsCellularAccess", macos(10.13.4, WK_MAC_TBA), ios(11.3, WK_IOS_TBA));
 @property (nonatomic, setter=_setProxyConfiguration:) NSDictionary *_proxyConfiguration WK_API_DEPRECATED_WITH_REPLACEMENT("_WKWebsiteDataStoreConfiguration.proxyConfiguration", macos(10.14, WK_MAC_TBA), ios(12.0, WK_IOS_TBA));
 @property (nonatomic, setter=_setAllowsTLSFallback:) BOOL _allowsTLSFallback WK_API_AVAILABLE(macos(10.15), ios(13.0));
+@property (nonatomic, readonly) NSURL *_indexedDBDatabaseDirectory WK_API_DEPRECATED_WITH_REPLACEMENT("_WKWebsiteDataStoreConfiguration._indexedDBDatabaseDirectory", macos(10.11, WK_MAC_TBA), ios(9.0, WK_IOS_TBA));
 
-@property (nonatomic, readonly) NSURL *_indexedDBDatabaseDirectory;
 
 - (void)_setResourceLoadStatisticsTestingCallback:(nullable void (^)(WKWebsiteDataStore *, NSString *))callback WK_API_AVAILABLE(macos(10.13), ios(11.0));
 - (void)_getAllStorageAccessEntriesFor:(WKWebView *)webView completionHandler:(void (^)(NSArray<NSString *> *domains))completionHandler WK_API_AVAILABLE(macos(10.14), ios(12.0));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to