Home
last modified time | relevance | path

Searched refs:drawsTransparentBackground (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
DWebPageCreationParameters.cpp45 encoder->encode(drawsTransparentBackground); in encode()
85 if (!decoder->decode(parameters.drawsTransparentBackground)) in decode()
DWebPageCreationParameters.h59 bool drawsTransparentBackground; member
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKView.h48 @property BOOL drawsTransparentBackground;
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/
DLayerTreeHostCA.cpp67 …Layer->setContentsOpaque(m_webPage->drawsBackground() && !m_webPage->drawsTransparentBackground()); in initialize()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.cpp215 setDrawsTransparentBackground(parameters.drawsTransparentBackground); in WebPage()
1145 void WebPage::setDrawsTransparentBackground(bool drawsTransparentBackground) in setDrawsTransparentBackground() argument
1147 if (m_drawsTransparentBackground == drawsTransparentBackground) in setDrawsTransparentBackground()
1150 m_drawsTransparentBackground = drawsTransparentBackground; in setDrawsTransparentBackground()
1152 Color backgroundColor = drawsTransparentBackground ? Color::transparent : Color::white; in setDrawsTransparentBackground()
DWebPage.messages.in30 SetDrawsTransparentBackground(bool drawsTransparentBackground)
DWebPage.h240 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; } in drawsTransparentBackground() function
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp553 void WebPageProxy::setDrawsTransparentBackground(bool drawsTransparentBackground) in setDrawsTransparentBackground() argument
555 if (m_drawsTransparentBackground == drawsTransparentBackground) in setDrawsTransparentBackground()
558 m_drawsTransparentBackground = drawsTransparentBackground; in setDrawsTransparentBackground()
561 …process()->send(Messages::WebPage::SetDrawsTransparentBackground(drawsTransparentBackground), m_pa… in setDrawsTransparentBackground()
2812 parameters.drawsTransparentBackground = m_drawsTransparentBackground; in creationParameters()
DWebPageProxy.h221 bool drawsTransparentBackground() const { return m_drawsTransparentBackground; } in drawsTransparentBackground() function
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebFrameLoaderClient.cpp1101 … Color backgroundColor = webPage->drawsTransparentBackground() ? Color::transparent : Color::white; in transitionToCommittedForNewPage()
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-1614318 …(WebKit::WebPageCreationParameters::encode): Encode drawsBackground and drawsTransparentBackground.
14319 …(WebKit::WebPageCreationParameters::decode): Decode drawsBackground and drawsTransparentBackground.
14326 (-[WKView drawsTransparentBackground]): Added.
14334 … (WebKit::WebPageProxy::creationParameters): Set drawsBackground and drawsTransparentBackground.
14337 … (WebKit::WebPageProxy::drawsTransparentBackground): Added. Return m_drawsTransparentBackground.
14349 (WebKit::WebPage::drawsTransparentBackground): Added. Return m_drawsTransparentBackground.