HomeSort by relevance Sort by last modified time
    Searched refs:drawsTransparentBackground (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebKit2/Shared/
WebPageCreationParameters.h 59 bool drawsTransparentBackground;
WebPageCreationParameters.cpp 45 encoder->encode(drawsTransparentBackground);
85 if (!decoder->decode(parameters.drawsTransparentBackground))
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.h 48 @property BOOL drawsTransparentBackground;
WKView.mm 277 - (void)setDrawsTransparentBackground:(BOOL)drawsTransparentBackground
279 _data->_page->setDrawsTransparentBackground(drawsTransparentBackground);
282 - (BOOL)drawsTransparentBackground
284 return _data->_page->drawsTransparentBackground();
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp 67 m_nonCompositedContentLayer->setContentsOpaque(m_webPage->drawsBackground() && !m_webPage->drawsTransparentBackground());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 215 setDrawsTransparentBackground(parameters.drawsTransparentBackground);
    [all...]
WebPage.h 240 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; }
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp 553 void WebPageProxy::setDrawsTransparentBackground(bool drawsTransparentBackground)
555 if (m_drawsTransparentBackground == drawsTransparentBackground)
558 m_drawsTransparentBackground = drawsTransparentBackground;
561 process()->send(Messages::WebPage::SetDrawsTransparentBackground(drawsTransparentBackground), m_pageID);
    [all...]
WebPageProxy.h 221 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; }
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp     [all...]

Completed in 49 milliseconds