Changeset 248299 in webkit
- Timestamp:
- Aug 6, 2019, 9:26:47 AM (7 years ago)
- Location:
- branches/safari-608.1-branch/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentViewInteraction.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-608.1-branch/Source/WebKit/ChangeLog
r248298 r248299 1 2019-08-06 Kocsen Chung <kocsen_chung@apple.com> 2 3 Cherry-pick r247838. rdar://problem/53973599 4 5 WebKit/UIProcess/ios/WKContentViewInteraction.mm: error: implementing deprecated method contextMenuInteractionWillPresent 6 https://bugs.webkit.org/show_bug.cgi?id=200136 7 <rdar://problem/53547698> 8 9 Reviewed by Wenson Hsieh. 10 11 Ignore deprecation warnings for these UIContextMenuInteraction delegates. 12 13 * UIProcess/ios/WKContentViewInteraction.mm: 14 (-[WKContentView contextMenuInteractionWillPresent:]): 15 (-[WKContentView contextMenuInteraction:willCommitWithAnimator:]): 16 (-[WKContentView contextMenuInteractionDidEnd:]): 17 18 git-svn-id: https://svn.webkit.org/repository/webkit/trunk@247838 268f45cc-cd09-0410-ab3c-d52691b4dbfc 19 20 2019-07-25 Dean Jackson <dino@apple.com> 21 22 WebKit/UIProcess/ios/WKContentViewInteraction.mm: error: implementing deprecated method contextMenuInteractionWillPresent 23 https://bugs.webkit.org/show_bug.cgi?id=200136 24 <rdar://problem/53547698> 25 26 Reviewed by Wenson Hsieh. 27 28 Ignore deprecation warnings for these UIContextMenuInteraction delegates. 29 30 * UIProcess/ios/WKContentViewInteraction.mm: 31 (-[WKContentView contextMenuInteractionWillPresent:]): 32 (-[WKContentView contextMenuInteraction:willCommitWithAnimator:]): 33 (-[WKContentView contextMenuInteractionDidEnd:]): 34 1 35 2019-08-06 Kocsen Chung <kocsen_chung@apple.com> 2 36 -
branches/safari-608.1-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r248158 r248299 8073 8073 } 8074 8074 8075 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8075 8076 - (void)contextMenuInteractionWillPresent:(UIContextMenuInteraction *)interaction 8077 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8076 8078 { 8077 8079 if (!_webView) … … 8094 8096 } 8095 8097 8098 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8096 8099 - (void)contextMenuInteraction:(UIContextMenuInteraction *)interaction willCommitWithAnimator:(id<UIContextMenuInteractionCommitAnimating>)animator 8100 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8097 8101 { 8098 8102 if (!_webView) … … 8147 8151 } 8148 8152 8153 ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN 8149 8154 - (void)contextMenuInteractionDidEnd:(UIContextMenuInteraction *)interaction 8155 ALLOW_DEPRECATED_IMPLEMENTATIONS_END 8150 8156 { 8151 8157 if (!_webView)
Note:
See TracChangeset
for help on using the changeset viewer.