Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Unified Diff: Source/core/inspector/InspectorDOMAgent.cpp

Issue 1286483003: Devtools UI: Update inspect element node description label UI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase tests Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorDOMAgent.cpp
diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp
index fb9146cfdd46f1e1e4d96411f41cf7164b8cb47f..db1458032542aec115ed154f1470f11b04627347 100644
--- a/Source/core/inspector/InspectorDOMAgent.cpp
+++ b/Source/core/inspector/InspectorDOMAgent.cpp
@@ -1255,6 +1255,9 @@ PassOwnPtr<InspectorHighlightConfig> InspectorDOMAgent::highlightConfigFromInspe
bool showLayoutEditor = false;
highlightInspectorObject->getBoolean("showLayoutEditor", &showLayoutEditor);
highlightConfig->showLayoutEditor = showLayoutEditor;
+ bool displayAsMaterial = false;
+ highlightInspectorObject->getBoolean("displayAsMaterial", &displayAsMaterial);
+ highlightConfig->displayAsMaterial = displayAsMaterial;
highlightConfig->content = parseConfigColor("contentColor", highlightInspectorObject);
highlightConfig->contentOutline = parseConfigColor("contentOutlineColor", highlightInspectorObject);
highlightConfig->padding = parseConfigColor("paddingColor", highlightInspectorObject);

Powered by Google App Engine
This is Rietveld 408576698