Title: [243212] trunk/Source/WebKit
Revision
243212
Author
[email protected]
Date
2019-03-20 09:47:55 -0700 (Wed, 20 Mar 2019)

Log Message

Fix _getContentsAsAttributedStringWithCompletionHandler availability for iOS.
https://bugs.webkit.org/show_bug.cgi?id=195999

Patch by Olivier Robin <[email protected]> on 2019-03-20
Reviewed by Tim Horton.

* UIProcess/API/Cocoa/WKWebViewPrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (243211 => 243212)


--- trunk/Source/WebKit/ChangeLog	2019-03-20 16:44:49 UTC (rev 243211)
+++ trunk/Source/WebKit/ChangeLog	2019-03-20 16:47:55 UTC (rev 243212)
@@ -1,3 +1,12 @@
+2019-03-20  Olivier Robin  <[email protected]>
+
+        Fix _getContentsAsAttributedStringWithCompletionHandler availability for iOS.
+        https://bugs.webkit.org/show_bug.cgi?id=195999
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/API/Cocoa/WKWebViewPrivate.h:
+
 2019-03-20  Brent Fulgham  <[email protected]>
 
         Adopt RegistrableDomain in the Storage Access API prompt code paths

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewPrivate.h (243211 => 243212)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewPrivate.h	2019-03-20 16:44:49 UTC (rev 243211)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewPrivate.h	2019-03-20 16:47:55 UTC (rev 243212)
@@ -364,7 +364,7 @@
 - (void)_getMainResourceDataWithCompletionHandler:(void (^)(NSData *, NSError *))completionHandler;
 - (void)_getWebArchiveDataWithCompletionHandler:(void (^)(NSData *, NSError *))completionHandler;
 - (void)_getContentsAsStringWithCompletionHandler:(void (^)(NSString *, NSError *))completionHandler WK_API_AVAILABLE(macosx(10.13), ios(11.0));
-- (void)_getContentsAsAttributedStringWithCompletionHandler:(void (^)(NSAttributedString *, NSDictionary<NSAttributedStringDocumentAttributeKey, id> *, NSError *))completionHandler WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_MAC_TBA));
+- (void)_getContentsAsAttributedStringWithCompletionHandler:(void (^)(NSAttributedString *, NSDictionary<NSAttributedStringDocumentAttributeKey, id> *, NSError *))completionHandler WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA));
 
 - (void)_getApplicationManifestWithCompletionHandler:(void (^)(_WKApplicationManifest *))completionHandler WK_API_AVAILABLE(macosx(10.13.4), ios(11.3));
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to