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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Toolbar.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/ui/Toolbar.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
index 11709408771d514e9d104e0ce66f0d0ff0772d85..df8ff2885b80a70cd6fb04074c8990b75bf2cd1d 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
@@ -898,7 +898,7 @@ UI.ToolbarCheckbox = class extends UI.ToolbarItem {
* @param {function()=} listener
*/
constructor(text, title, setting, listener) {
- super(createCheckboxLabel(text));
+ super(UI.createCheckboxLabel(text));
this.element.classList.add('checkbox');
this.inputElement = this.element.checkboxElement;
if (title)

Powered by Google App Engine
This is Rietveld 408576698