Searched refs:drawsTransparentBackground (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebPageCreationParameters.h59 bool drawsTransparentBackground; member in struct:WebKit::WebPageCreationParameters
H A DWebPageCreationParameters.cpp45 encoder->encode(drawsTransparentBackground);
85 if (!decoder->decode(parameters.drawsTransparentBackground))
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKView.h48 @property BOOL drawsTransparentBackground; variable
H A DWKView.mm277 - (void)setDrawsTransparentBackground:(BOOL)drawsTransparentBackground
279 _data->_page->setDrawsTransparentBackground(drawsTransparentBackground);
282 - (BOOL)drawsTransparentBackground
284 return _data->_page->drawsTransparentBackground();
1788 if (page->drawsTransparentBackground())
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
H A DLayerTreeHostCA.cpp67 m_nonCompositedContentLayer->setContentsOpaque(m_webPage->drawsBackground() && !m_webPage->drawsTransparentBackground());
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp215 setDrawsTransparentBackground(parameters.drawsTransparentBackground);
1145 void WebPage::setDrawsTransparentBackground(bool drawsTransparentBackground) argument
1147 if (m_drawsTransparentBackground == drawsTransparentBackground)
1150 m_drawsTransparentBackground = drawsTransparentBackground;
1152 Color backgroundColor = drawsTransparentBackground ? Color::transparent : Color::white;
H A DWebPage.h240 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; } function in class:WebKit::WebPage
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp553 void WebPageProxy::setDrawsTransparentBackground(bool drawsTransparentBackground) argument
555 if (m_drawsTransparentBackground == drawsTransparentBackground)
558 m_drawsTransparentBackground = drawsTransparentBackground;
561 process()->send(Messages::WebPage::SetDrawsTransparentBackground(drawsTransparentBackground), m_pageID);
2812 parameters.drawsTransparentBackground = m_drawsTransparentBackground;
H A DWebPageProxy.h221 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; } function in class:WebKit::WebPageProxy
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp1101 Color backgroundColor = webPage->drawsTransparentBackground() ? Color::transparent : Color::white;

Completed in 206 milliseconds