Changeset 213308 in webkit


Ignore:
Timestamp:
Mar 2, 2017 2:50:55 PM (7 years ago)
Author:
Megan Gardner
Message:

Data Interaction build fixes
https://bugs.webkit.org/show_bug.cgi?id=169096

Reviewed by Tim Horton.

Guards weren't all correct, also missed a selector name change.

  • WebView/WebView.mm:

(-[WebView _setDataInteractionData:textIndicator:atClientPosition:anchorPoint:action:]):

  • WebView/WebViewData.h:
  • WebView/WebViewData.mm:

(-[WebViewPrivate dealloc]):

Location:
trunk/Source/WebKit/mac
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/mac/ChangeLog

    r213294 r213308  
     12017-03-02  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Data Interaction build fixes
     4        https://bugs.webkit.org/show_bug.cgi?id=169096
     5
     6        Reviewed by Tim Horton.
     7
     8        Guards weren't all correct, also missed a selector name change.
     9
     10        * WebView/WebView.mm:
     11        (-[WebView _setDataInteractionData:textIndicator:atClientPosition:anchorPoint:action:]):
     12        * WebView/WebViewData.h:
     13        * WebView/WebViewData.mm:
     14        (-[WebViewPrivate dealloc]):
     15
    1162017-03-02  Alex Christensen  <achristensen@webkit.org>
    217
  • trunk/Source/WebKit/mac/WebView/WebView.mm

    r213292 r213308  
    619619
    620620#if ENABLE(DATA_INTERACTION)
     621
    621622@implementation WebUITextIndicatorData
    622623
     
    17871788{
    17881789    if (indicatorData)
    1789         _private->textIndicatorData = [[[WebUITextIndicatorData alloc] initWithImage:image TextIndicatorData:indicatorData.value() scale:_private->page->deviceScaleFactor()] retain];
     1790        _private->textIndicatorData = [[[WebUITextIndicatorData alloc] initWithImage:image textIndicatorData:indicatorData.value() scale:_private->page->deviceScaleFactor()] retain];
    17901791    else
    17911792        _private->textIndicatorData = [[[WebUITextIndicatorData alloc] initWithImage:image scale:_private->page->deviceScaleFactor()] retain];
  • trunk/Source/WebKit/mac/WebView/WebViewData.h

    r213292 r213308  
    285285    WTF::Lock pendingFixedPositionLayoutRectMutex;
    286286    CGRect pendingFixedPositionLayoutRect;
     287#endif
     288   
     289#if ENABLE(DATA_INTERACTION)
    287290    WebUITextIndicatorData *textIndicatorData;
    288291#endif
     292
    289293
    290294#if !PLATFORM(IOS)
  • trunk/Source/WebKit/mac/WebView/WebViewData.mm

    r213292 r213308  
    213213    [_caretChangeListeners release];
    214214    [_fixedPositionContent release];
     215#endif
     216#if ENABLE(DATA_INTERACTION)
    215217    [textIndicatorData release];
    216218#endif
Note: See TracChangeset for help on using the changeset viewer.