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

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

Issue 1066573002: DevTools: migrate from ui-setting to settings extension point. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed Created 5 years, 8 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
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ui/SettingsUI.js
diff --git a/Source/devtools/front_end/ui/SettingsUI.js b/Source/devtools/front_end/ui/SettingsUI.js
index 4892e1470b0c9660a0852f8eaf3c96e789afabc3..d723f90cbd13b2a5fb0b8c4d6f71f804fce5da08 100644
--- a/Source/devtools/front_end/ui/SettingsUI.js
+++ b/Source/devtools/front_end/ui/SettingsUI.js
@@ -273,18 +273,15 @@ WebInspector.SettingsUI.createInput = function(parentElement, id, defaultText, e
}
/**
- * @constructor
+ * @interface
*/
-WebInspector.UISettingDelegate = function()
+WebInspector.SettingUI = function()
{
}
-WebInspector.UISettingDelegate.prototype = {
+WebInspector.SettingUI.prototype = {
/**
* @return {?Element}
*/
- settingElement: function()
- {
- return null;
- }
+ settingElement: function() { }
}
« no previous file with comments | « Source/devtools/front_end/timeline/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698