Home
last modified time | relevance | path

Searched refs:highlightConfig (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorOverlay.cpp197 void setDataFromConfig(const HighlightConfig& highlightConfig) in setDataFromConfig() argument
199 m_showRulers = highlightConfig.showRulers; in setDataFromConfig()
200 m_showExtensionLines = highlightConfig.showExtensionLines; in setDataFromConfig()
306 static void buildNodeHighlight(Node& node, const HighlightConfig& highlightConfig, Highlight* highl… in buildNodeHighlight() argument
312 highlight->setDataFromConfig(highlightConfig); in buildNodeHighlight()
319 … highlight->appendQuad(quads[i], highlightConfig.content, highlightConfig.contentOutline); in buildNodeHighlight()
326 highlight->appendQuad(content, highlightConfig.content, highlightConfig.contentOutline); in buildNodeHighlight()
327 highlight->appendQuad(padding, highlightConfig.padding); in buildNodeHighlight()
328 highlight->appendQuad(border, highlightConfig.border); in buildNodeHighlight()
329 highlight->appendQuad(margin, highlightConfig.margin); in buildNodeHighlight()
[all …]
DInspectorDOMAgent.cpp1263 OwnPtr<HighlightConfig> highlightConfig = adoptPtr(new HighlightConfig()); in highlightConfigFromInspectorObject() local
1266 highlightConfig->showInfo = showInfo; in highlightConfigFromInspectorObject()
1269 highlightConfig->showRulers = showRulers; in highlightConfigFromInspectorObject()
1272 highlightConfig->showExtensionLines = showExtensionLines; in highlightConfigFromInspectorObject()
1273 highlightConfig->content = parseConfigColor("contentColor", highlightInspectorObject); in highlightConfigFromInspectorObject()
1274highlightConfig->contentOutline = parseConfigColor("contentOutlineColor", highlightInspectorObject… in highlightConfigFromInspectorObject()
1275 highlightConfig->padding = parseConfigColor("paddingColor", highlightInspectorObject); in highlightConfigFromInspectorObject()
1276 highlightConfig->border = parseConfigColor("borderColor", highlightInspectorObject); in highlightConfigFromInspectorObject()
1277 highlightConfig->margin = parseConfigColor("marginColor", highlightInspectorObject); in highlightConfigFromInspectorObject()
1278 highlightConfig->eventTarget = parseConfigColor("eventTargetColor", highlightInspectorObject); in highlightConfigFromInspectorObject()
[all …]
DInspectorDOMAgent.h136 … bool enabled, const bool* inspectUAShadowDOM, const RefPtr<JSONObject>* highlightConfig) OVERRIDE;
143 …virtual void highlightNode(ErrorString*, const RefPtr<JSONObject>& highlightConfig, const int* nod…
225 void setSearchingForNode(ErrorString*, SearchMode, JSONObject* highlightConfig);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DDOMModel.js1506 var highlightConfig = this._buildHighlightConfig(config.mode);
1508 highlightConfig.showInfo = config.showInfo;
1509 this._highlighter.highlightDOMNode(this.nodeForId(nodeId || 0), highlightConfig, objectId);
1550 …var highlightConfig = { showInfo: mode === "all", showRulers: WebInspector.overridesSupport.showMe… variable
1552highlightConfig.contentColor = WebInspector.Color.PageHighlight.Content.toProtocolRGBA();
1555highlightConfig.paddingColor = WebInspector.Color.PageHighlight.Padding.toProtocolRGBA();
1558 highlightConfig.borderColor = WebInspector.Color.PageHighlight.Border.toProtocolRGBA();
1561 highlightConfig.marginColor = WebInspector.Color.PageHighlight.Margin.toProtocolRGBA();
1564highlightConfig.eventTargetColor = WebInspector.Color.PageHighlight.EventTarget.toProtocolRGBA();
1565 highlightConfig.shapeColor = WebInspector.Color.PageHighlight.Shape.toProtocolRGBA();
[all …]