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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js

Issue 1942523002: DevTools: render parsed manifest data in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 4 years, 8 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: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
index fd669944760b2855fa2fba1fd1c029b203fcfe0e..60c298bbf6a995808b3cb1d95f170cc0101d93ac 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
@@ -1254,6 +1254,19 @@ function createRadioLabel(name, title, checked)
}
/**
+ * @param {string} title
+ * @param {string} iconClass
+ * @return {!Element}
+ */
+function createLabel(title, iconClass)
+{
+ var element = createElement("label", "dt-icon-label");
+ element.createChild("span").textContent = title;
+ element.type = iconClass;
+ return element;
+}
+
+/**
* @param {string=} title
* @param {boolean=} checked
* @param {string=} subtitle
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/security/originView.css ('k') | third_party/WebKit/Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698