Home
last modified time | relevance | path

Searched refs:_layerHostingView (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/mac/
DWKFullScreenWindowController.mm246 … [animationView addSubview:_webView positioned:NSWindowBelow relativeTo:_layerHostingView.get()];
322 if (_layerHostingView)
328 _layerHostingView.adoptNS([[NSView alloc] initWithFrame:[[self window] frame]]);
329 [_layerHostingView.get() setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
334 [[window animationView] addSubview:_layerHostingView.get()];
345 [_layerHostingView.get() setLayer:rootLayer.get()];
346 [_layerHostingView.get() setWantsLayer:YES];
353 if (!_layerHostingView)
358 [_layerHostingView.get() removeFromSuperview];
359 [_layerHostingView.get() setLayer:nil];
[all …]
DWKFullScreenWindowController.h46 RetainPtr<NSView> _layerHostingView; variable
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKView.mm120 RetainPtr<NSView> _layerHostingView; field
1896 if (hitView && _data && hitView == _data->_layerHostingView)
2170 ASSERT(!_data->_layerHostingView);
2174 _data->_layerHostingView.adoptNS([[NSView alloc] initWithFrame:[self bounds]]);
2175 [_data->_layerHostingView.get() setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
2179 [self addSubview:_data->_layerHostingView.get()];
2190 [_data->_layerHostingView.get() setLayer:rootLayer.get()];
2191 [_data->_layerHostingView.get() setWantsLayer:YES];
2198 ASSERT(_data->_layerHostingView);
2200 [_data->_layerHostingView.get() removeFromSuperview];
[all …]
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-163875 Rename the current _layerHostingView to _oldLayerHostingView and
3876 add a new _layerHostingView to be used with the new drawing area.
16098 _layerHostingView.
DChangeLog6853 … (-[WKFullScreenWindowController enterAcceleratedCompositingMode:]): Add the _layerHostingView