Changeset 247838 in webkit
- Timestamp:
- Jul 25, 2019, 1:55:06 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentViewInteraction.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r247837 r247838 1 2019-07-25 Dean Jackson <dino@apple.com> 2 3 WebKit/UIProcess/ios/WKContentViewInteraction.mm: error: implementing deprecated method contextMenuInteractionWillPresent 4 https://bugs.webkit.org/show_bug.cgi?id=200136 5 <rdar://problem/53547698> 6 7 Reviewed by Wenson Hsieh. 8 9 Ignore deprecation warnings for these UIContextMenuInteraction delegates. 10 11 * UIProcess/ios/WKContentViewInteraction.mm: 12 (-[WKContentView contextMenuInteractionWillPresent:]): 13 (-[WKContentView contextMenuInteraction:willCommitWithAnimator:]): 14 (-[WKContentView contextMenuInteractionDidEnd:]): 15 1 16 2019-07-25 Dean Jackson <dino@apple.com> 2 17 -
trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r247820 r247838 8119 8119 } 8120 8120 8121 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8121 8122 - (void)contextMenuInteractionWillPresent:(UIContextMenuInteraction *)interaction 8123 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8122 8124 { 8123 8125 if (!_webView) … … 8140 8142 } 8141 8143 8144 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8142 8145 - (void)contextMenuInteraction:(UIContextMenuInteraction *)interaction willCommitWithAnimator:(id<UIContextMenuInteractionCommitAnimating>)animator 8146 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8143 8147 { 8144 8148 if (!_webView) … … 8193 8197 } 8194 8198 8199 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8195 8200 - (void)contextMenuInteractionDidEnd:(UIContextMenuInteraction *)interaction 8201 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8196 8202 { 8197 8203 if (!_webView)
Note:
See TracChangeset
for help on using the changeset viewer.