Changeset 181884 in webkit
- Timestamp:
- Mar 23, 2015, 6:12:26 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/Cocoa/WKViewPrivate.h (modified) (1 diff)
-
UIProcess/API/mac/WKView.mm (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r181881 r181884 1 2015-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 1 8 2015-03-19 Timothy Hatcher <timothy@apple.com> 2 9 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKViewPrivate.h
r181881 r181884 100 100 @property (copy, nonatomic) NSColor *underlayColor; 101 101 102 #if WK_API_ENABLED 102 103 @property (strong, nonatomic, setter=_setInspectorAttachmentView:) NSView *_inspectorAttachmentView WK_AVAILABLE(WK_MAC_TBA, NA); 104 #endif 103 105 104 106 - (NSView*)fullScreenPlaceholderView; -
trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm
r181881 r181884 181 181 #if WK_API_ENABLED 182 182 RetainPtr<WKBrowsingContextController> _browsingContextController; 183 RetainPtr<NSView> _inspectorAttachmentView; 183 184 #endif 184 185 … … 193 194 194 195 RetainPtr<id> _remoteAccessibilityChild; 195 196 RetainPtr<NSView> _inspectorAttachmentView;197 196 198 197 // For asynchronous validation. … … 4136 4135 } 4137 4136 4137 #if WK_API_ENABLED 4138 4138 - (NSView *)_inspectorAttachmentView 4139 4139 { … … 4151 4151 _data->_page->inspector()->attachmentViewDidChange(oldView ? oldView : self, newView ? newView : self); 4152 4152 } 4153 #endif 4153 4154 4154 4155 - (NSView *)fullScreenPlaceholderView
Note:
See TracChangeset
for help on using the changeset viewer.