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

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorOverlay.cpp197 void setDataFromConfig(const HighlightConfig& highlightConfig) argument
199 m_showRulers = highlightConfig.showRulers;
200 m_showExtensionLines = highlightConfig.showExtensionLines;
306 static void buildNodeHighlight(Node& node, const HighlightConfig& highlightConfig, Highlight* highlight) argument
312 highlight->setDataFromConfig(highlightConfig);
319 highlight->appendQuad(quads[i], highlightConfig.content, highlightConfig.contentOutline);
326 highlight->appendQuad(content, highlightConfig.content, highlightConfig.contentOutline);
327 highlight->appendQuad(padding, highlightConfig
435 highlightNode(Node* node, Node* eventTarget, const HighlightConfig& highlightConfig, bool omitTooltip) argument
444 highlightQuad(PassOwnPtr<FloatQuad> quad, const HighlightConfig& highlightConfig) argument
[all...]
H A DInspectorDOMAgent.cpp1263 OwnPtr<HighlightConfig> highlightConfig = adoptPtr(new HighlightConfig()); local
1266 highlightConfig->showInfo = showInfo;
1269 highlightConfig->showRulers = showRulers;
1272 highlightConfig->showExtensionLines = showExtensionLines;
1273 highlightConfig->content = parseConfigColor("contentColor", highlightInspectorObject);
1274 highlightConfig->contentOutline = parseConfigColor("contentOutlineColor", highlightInspectorObject);
1275 highlightConfig->padding = parseConfigColor("paddingColor", highlightInspectorObject);
1276 highlightConfig->border = parseConfigColor("borderColor", highlightInspectorObject);
1277 highlightConfig->margin = parseConfigColor("marginColor", highlightInspectorObject);
1278 highlightConfig
1285 setInspectModeEnabled(ErrorString* errorString, bool enabled, const bool* inspectUAShadowDOM, const RefPtr<JSONObject>* highlightConfig) argument
1311 OwnPtr<HighlightConfig> highlightConfig = adoptPtr(new HighlightConfig()); local
1349 OwnPtr<HighlightConfig> highlightConfig = adoptPtr(new HighlightConfig()); local
[all...]
H A DInspectorDOMAgent.h136 virtual void setInspectModeEnabled(ErrorString*, bool enabled, const bool* inspectUAShadowDOM, const RefPtr<JSONObject>* highlightConfig) OVERRIDE;
143 virtual void highlightNode(ErrorString*, const RefPtr<JSONObject>& highlightConfig, const int* nodeId, const String* objectId) OVERRIDE;
225 void setSearchingForNode(ErrorString*, SearchMode, JSONObject* highlightConfig);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A 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.showMetricsRulers(), showExtensionLines: WebInspector.overridesSupport.showExtensionLines()};
1552 highlightConfig.contentColor = WebInspector.Color.PageHighlight.Content.toProtocolRGBA();
1555 highlightConfig.paddingColor = WebInspector.Color.PageHighlight.Padding.toProtocolRGBA();
1558 highlightConfig.borderColor = WebInspector.Color.PageHighlight.Border.toProtocolRGBA();
1561 highlightConfig.marginColor = WebInspector.Color.PageHighlight.Margin.toProtocolRGBA();
1564 highlightConfig.eventTargetColor = WebInspector.Color.PageHighlight.EventTarget.toProtocolRGBA();
1565 highlightConfig
[all...]

Completed in 173 milliseconds