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

Unified Diff: Source/devtools/front_end/main/module.json

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/main/Main.js ('k') | Source/devtools/front_end/network/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/main/module.json
diff --git a/Source/devtools/front_end/main/module.json b/Source/devtools/front_end/main/module.json
index bafb47d2b102d0095d05a6387388f3de2a4278b8..777e633ed6ff29c2e28d2863e1f2b10529069d16 100644
--- a/Source/devtools/front_end/main/module.json
+++ b/Source/devtools/front_end/main/module.json
@@ -209,49 +209,50 @@
"location": "toolbar-right"
},
{
- "type": "ui-setting",
+ "type": "setting",
"title": "Disable cache (while DevTools is open)",
"settingName": "cacheDisabled",
- "settingType": "checkbox"
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
+ "type": "setting",
"title": "Disable JavaScript",
"settingName": "javaScriptDisabled",
- "settingType": "checkbox"
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
- "section": "Appearance",
+ "type": "setting",
+ "category": "Appearance",
"title": "Split panels vertically when docked to right",
"settingName": "splitVerticallyWhenDockedToRight",
- "settingType": "checkbox"
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
- "section": "Appearance",
- "settingType": "custom",
- "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
+ "type": "setting",
+ "category": "Appearance",
+ "title": "Enable Ctrl + 1-9 shortcut to switch panels",
+ "title-mac": "Enable Cmd + 1-9 shortcut to switch panels",
+ "settingName": "shortcutPanelSwitch",
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
- "section": "Appearance",
+ "type": "setting",
+ "category": "Appearance",
"title": "Don't show emulation warnings",
"settingName": "disableOverridesWarning",
- "settingType": "checkbox"
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
- "section": "Appearance",
+ "type": "setting",
+ "category": "Appearance",
"title": "Disable paused state overlay",
"settingName": "disablePausedStateOverlay",
- "settingType": "checkbox"
+ "settingType": "boolean"
},
{
- "type": "ui-setting",
- "section": "Extensions",
- "settingType": "custom",
- "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSettingDelegate"
+ "type": "@WebInspector.SettingUI",
+ "category": "Extensions",
+ "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSettingUI"
}
],
"dependencies": [
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | Source/devtools/front_end/network/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698