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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.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/SettingsUI.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js b/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
index 5f7ad1cd0e6f976b435775ba67cbd5899d83c046..a8aafa6ae7f4d2f20c086261c23d7668b150eddb 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
@@ -37,7 +37,7 @@ UI.SettingsUI = {};
* @return {!Element}
*/
UI.SettingsUI.createSettingCheckbox = function(name, setting, omitParagraphElement, tooltip) {
- var label = createCheckboxLabel(name);
+ var label = UI.createCheckboxLabel(name);
if (tooltip)
label.title = tooltip;

Powered by Google App Engine
This is Rietveld 408576698