Home
last modified time | relevance | path

Searched refs:showDebugInfo (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
DWebFrame.h567 virtual WebString renderTreeAsText(bool showDebugInfo = false) const = 0;
600 virtual WebString layerTreeAsText(bool showDebugInfo = false) const = 0;
/external/webkit/Source/WebKit/chromium/src/
DWebFrameImpl.h197 virtual WebString renderTreeAsText(bool showDebugInfo = false) const;
209 virtual WebString layerTreeAsText(bool showDebugInfo = false) const;
DWebFrameImpl.cpp1802 WebString WebFrameImpl::renderTreeAsText(bool showDebugInfo) const in renderTreeAsText()
1806 if (showDebugInfo) { in renderTreeAsText()
1883 WebString WebFrameImpl::layerTreeAsText(bool showDebugInfo) const in layerTreeAsText()
1887 return WebString(m_frame->layerTreeAsText(showDebugInfo)); in layerTreeAsText()
/external/webkit/Source/WebCore/rendering/
DRenderLayerCompositor.h178 String layerTreeAsText(bool showDebugInfo = false);
DRenderLayerCompositor.cpp1092 String RenderLayerCompositor::layerTreeAsText(bool showDebugInfo) argument
1102 …return m_rootPlatformLayer->layerTreeAsText(showDebugInfo ? LayerTreeAsTextDebug : LayerTreeAsText…
/external/webkit/Source/WebCore/page/
DFrame.h135 String layerTreeAsText(bool showDebugInfo = false) const;
DFrame.cpp943 String Frame::layerTreeAsText(bool showDebugInfo) const in layerTreeAsText()
951 return contentRenderer()->compositor()->layerTreeAsText(showDebugInfo); in layerTreeAsText()