Title: [203192] trunk/Source/WebKit2
Revision
203192
Author
[email protected]
Date
2016-07-13 14:58:56 -0700 (Wed, 13 Jul 2016)

Log Message

Add _applePayCapabilityDisclosureAllowed SPI declaration
https://bugs.webkit.org/show_bug.cgi?id=159740

Reviewed by Dan Bernstein.

Also, delete an old method that is no longer used.

* UIProcess/API/Cocoa/WKPreferencesPrivate.h:
* UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
(-[WKWebViewConfiguration _paymentsEnabled]): Deleted.
(-[WKWebViewConfiguration _setPaymentsEnabled:]): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (203191 => 203192)


--- trunk/Source/WebKit2/ChangeLog	2016-07-13 21:56:36 UTC (rev 203191)
+++ trunk/Source/WebKit2/ChangeLog	2016-07-13 21:58:56 UTC (rev 203192)
@@ -1,3 +1,17 @@
+2016-07-13  Anders Carlsson  <[email protected]>
+
+        Add _applePayCapabilityDisclosureAllowed SPI declaration
+        https://bugs.webkit.org/show_bug.cgi?id=159740
+
+        Reviewed by Dan Bernstein.
+
+        Also, delete an old method that is no longer used.
+
+        * UIProcess/API/Cocoa/WKPreferencesPrivate.h:
+        * UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
+        (-[WKWebViewConfiguration _paymentsEnabled]): Deleted.
+        (-[WKWebViewConfiguration _setPaymentsEnabled:]): Deleted.
+
 2016-07-13  Zalan Bujtas  <[email protected]>
 
         Blank news article on kottke.org

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferencesPrivate.h (203191 => 203192)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferencesPrivate.h	2016-07-13 21:56:36 UTC (rev 203191)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreferencesPrivate.h	2016-07-13 21:58:56 UTC (rev 203192)
@@ -88,6 +88,8 @@
 @property (nonatomic, setter=_setOfflineApplicationCacheIsEnabled:) BOOL _offlineApplicationCacheIsEnabled;
 @property (nonatomic, setter=_setFullScreenEnabled:) BOOL _fullScreenEnabled WK_API_AVAILABLE(macosx(10.11), ios(9.0));
 
+@property (nonatomic, setter=_setApplePayCapabilityDisclosureAllowed:) BOOL _applePayCapabilityDisclosureAllowed WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA));
+
 + (NSArray<_WKExperimentalFeature *> *)_experimentalFeatures WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA));
 - (BOOL)_isEnabledForFeature:(_WKExperimentalFeature *)feature WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA));
 - (void)_setEnabled:(BOOL)value forFeature:(_WKExperimentalFeature *)feature WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA));

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (203191 => 203192)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm	2016-07-13 21:56:36 UTC (rev 203191)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm	2016-07-13 21:58:56 UTC (rev 203192)
@@ -724,16 +724,6 @@
 #endif
 }
 
-- (BOOL)_paymentsEnabled
-{
-    return self._applePayEnabled;
-}
-
-- (void)_setPaymentsEnabled:(BOOL)paymentsEnabled
-{
-    [self _setApplePayEnabled:paymentsEnabled];
-}
-
 @end
 
 @implementation WKWebViewConfiguration (WKDeprecated)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to