Title: [259351] trunk/Source/WebKit
Revision
259351
Author
bfulg...@apple.com
Date
2020-04-01 09:33:30 -0700 (Wed, 01 Apr 2020)

Log Message

Convert app-bound domain categorization parameter to a method
https://bugs.webkit.org/show_bug.cgi?id=209842
<rdar://problem/61128744>

Reviewed by John Wilander.

SSIA.

Covered by existing TestWebKitAPI tests.

* UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h:

Modified Paths

Diff

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


--- trunk/Source/WebKit/ChangeLog	2020-04-01 16:21:37 UTC (rev 259350)
+++ trunk/Source/WebKit/ChangeLog	2020-04-01 16:33:30 UTC (rev 259351)
@@ -1,3 +1,17 @@
+2020-04-01  Brent Fulgham  <bfulg...@apple.com>
+
+        Convert app-bound domain categorization parameter to a method
+        https://bugs.webkit.org/show_bug.cgi?id=209842
+        <rdar://problem/61128744>
+
+        Reviewed by John Wilander.
+
+        SSIA.
+
+        Covered by existing TestWebKitAPI tests.
+
+        * UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h:
+
 2020-04-01  Alex Christensen  <achristen...@webkit.org>
 
         Deprecate WKWebsiteDataStore._indexedDBDatabaseDirectory

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


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h	2020-04-01 16:21:37 UTC (rev 259350)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewConfigurationPrivate.h	2020-04-01 16:33:30 UTC (rev 259351)
@@ -122,8 +122,10 @@
 @property (nonatomic, setter=_setEditableImagesEnabled:) BOOL _editableImagesEnabled WK_API_AVAILABLE(macos(10.14.4), ios(12.2));
 @property (nonatomic, setter=_setUndoManagerAPIEnabled:) BOOL _undoManagerAPIEnabled WK_API_AVAILABLE(macos(10.15), ios(13.0));
 @property (nonatomic, setter=_setWebViewCategory:) _WKWebViewCategory _webViewCategory WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
-@property (nonatomic, setter=_setIgnoresAppBoundDomains:) BOOL _ignoresAppBoundDomains WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
 
+- (void)_setIgnoresAppBoundDomains:(BOOL)ignoresAppBoundDomains  WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
+- (BOOL)_ignoresAppBoundDomains WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
+
 @property (nonatomic, setter=_setProcessDisplayName:) NSString *_processDisplayName WK_API_AVAILABLE(macos(WK_MAC_TBA), ios(WK_IOS_TBA));
 
 @end
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to