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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.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/components/DOMBreakpointsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
index 8aa49995c3e3297371fe74727466695371884a85..e1c38f0b14be6b68ebaaf6d685a6715c92745d79 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
@@ -186,7 +186,7 @@ Components.DOMBreakpointsSidebarPane = class extends Components.BreakpointsSideb
element._type = type;
element.addEventListener('contextmenu', this._contextMenu.bind(this, node, type), true);
- var checkboxLabel = createCheckboxLabel('', enabled);
+ var checkboxLabel = UI.createCheckboxLabel('', enabled);
var checkboxElement = checkboxLabel.checkboxElement;
checkboxElement.addEventListener('click', this._checkboxClicked.bind(this, node, type), false);
element._checkboxElement = checkboxElement;

Powered by Google App Engine
This is Rietveld 408576698