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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js

Issue 2604883002: DevTools: namespace globals (Closed)
Patch Set: address CL feedback Created 4 years 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/elements/ElementStatePaneWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
index 10c8b9ff5aa282ec5e989eb728de566cbc258f62..4ecbcb5738341b1ddec95b717006cffdfae57be4 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementStatePaneWidget.js
@@ -30,7 +30,7 @@ Elements.ElementStatePaneWidget = class extends UI.Widget {
*/
function createCheckbox(state) {
var td = createElement('td');
- var label = createCheckboxLabel(':' + state);
+ var label = UI.createCheckboxLabel(':' + state);
var input = label.checkboxElement;
input.state = state;
input.addEventListener('click', clickListener, false);

Powered by Google App Engine
This is Rietveld 408576698