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

Changeset 181884 in webkit


Ignore:
Timestamp:
Mar 23, 2015, 6:12:26 PM (11 years ago)
Author:
Joseph Pecoraro
Message:

Unreviewed, attempt to fix 32-bit build after r181881.

  • UIProcess/API/Cocoa/WKViewPrivate.h:
  • UIProcess/API/mac/WKView.mm:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r181881 r181884  
     12015-03-23  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Unreviewed, attempt to fix 32-bit build after r181881.
     4
     5        * UIProcess/API/Cocoa/WKViewPrivate.h:
     6        * UIProcess/API/mac/WKView.mm:
     7
    182015-03-19  Timothy Hatcher  <timothy@apple.com>
    29
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKViewPrivate.h

    r181881 r181884  
    100100@property (copy, nonatomic) NSColor *underlayColor;
    101101
     102#if WK_API_ENABLED
    102103@property (strong, nonatomic, setter=_setInspectorAttachmentView:) NSView *_inspectorAttachmentView WK_AVAILABLE(WK_MAC_TBA, NA);
     104#endif
    103105
    104106- (NSView*)fullScreenPlaceholderView;
  • trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm

    r181881 r181884  
    181181#if WK_API_ENABLED
    182182    RetainPtr<WKBrowsingContextController> _browsingContextController;
     183    RetainPtr<NSView> _inspectorAttachmentView;
    183184#endif
    184185
     
    193194
    194195    RetainPtr<id> _remoteAccessibilityChild;
    195 
    196     RetainPtr<NSView> _inspectorAttachmentView;
    197196
    198197    // For asynchronous validation.
     
    41364135}
    41374136
     4137#if WK_API_ENABLED
    41384138- (NSView *)_inspectorAttachmentView
    41394139{
     
    41514151    _data->_page->inspector()->attachmentViewDidChange(oldView ? oldView : self, newView ? newView : self);
    41524152}
     4153#endif
    41534154
    41544155- (NSView *)fullScreenPlaceholderView
Note: See TracChangeset for help on using the changeset viewer.