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

Changeset 247838 in webkit


Ignore:
Timestamp:
Jul 25, 2019, 1:55:06 PM (7 years ago)
Author:
dino@apple.com
Message:

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:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r247837 r247838  
     12019-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
    1162019-07-25  Dean Jackson  <dino@apple.com>
    217
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r247820 r247838  
    81198119}
    81208120
     8121ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    81218122- (void)contextMenuInteractionWillPresent:(UIContextMenuInteraction *)interaction
     8123ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    81228124{
    81238125    if (!_webView)
     
    81408142}
    81418143
     8144ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    81428145- (void)contextMenuInteraction:(UIContextMenuInteraction *)interaction willCommitWithAnimator:(id<UIContextMenuInteractionCommitAnimating>)animator
     8146ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    81438147{
    81448148    if (!_webView)
     
    81938197}
    81948198
     8199ALLOW_DEPRECATED_IMPLEMENTATIONS_BEGIN
    81958200- (void)contextMenuInteractionDidEnd:(UIContextMenuInteraction *)interaction
     8201ALLOW_DEPRECATED_IMPLEMENTATIONS_END
    81968202{
    81978203    if (!_webView)
Note: See TracChangeset for help on using the changeset viewer.