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

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

Issue 2776263006: [DevTools] Migrate checkbox label to a proper web component (Closed)
Patch Set: Created 3 years, 9 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/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 a8aafa6ae7f4d2f20c086261c23d7668b150eddb..abb0b9c1875c065117ed006023aca3dcbf024e22 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 = UI.createCheckboxLabel(name);
+ var label = UI.CheckboxLabel.create(name);
if (tooltip)
label.title = tooltip;

Powered by Google App Engine
This is Rietveld 408576698