⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 248299 in webkit


Ignore:
Timestamp:
Aug 6, 2019, 9:26:47 AM (7 years ago)
Author:
Kocsen Chung
Message:

Cherry-pick r247838. rdar://problem/53973599

WebKit/UIProcess/ios/WKContentViewInteraction.mm: error: implementing deprecated method contextMenuInteractionWillPresent
https://bugs.webkit.org/show_bug.cgi?id=200136
<rdar://problem/53547698>

Reviewed by Wenson Hsieh.

Ignore deprecation warnings for these UIContextMenuInteraction delegates.

  • UIProcess/ios/WKContentViewInteraction.mm: (-[WKContentView contextMenuInteractionWillPresent:]): (-[WKContentView contextMenuInteraction:willCommitWithAnimator:]): (-[WKContentView contextMenuInteractionDidEnd:]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@247838 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
branches/safari-608.1-branch/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-608.1-branch/Source/WebKit/ChangeLog

    r248298 r248299  
     12019-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
    1352019-08-06  Kocsen Chung  <kocsen_chung@apple.com>
    236
  • branches/safari-608.1-branch/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r248158 r248299  
    80738073}
    80748074
     8075ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    80758076- (void)contextMenuInteractionWillPresent:(UIContextMenuInteraction *)interaction
     8077ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    80768078{
    80778079    if (!_webView)
     
    80948096}
    80958097
     8098ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    80968099- (void)contextMenuInteraction:(UIContextMenuInteraction *)interaction willCommitWithAnimator:(id<UIContextMenuInteractionCommitAnimating>)animator
     8100ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    80978101{
    80988102    if (!_webView)
     
    81478151}
    81488152
     8153ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    81498154- (void)contextMenuInteractionDidEnd:(UIContextMenuInteraction *)interaction
     8155ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    81508156{
    81518157    if (!_webView)
Note: See TracChangeset for help on using the changeset viewer.