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

Side by Side Diff: Source/devtools/front_end/main/module.json

Issue 283063003: DevTools: Implement extension-based status bar buttons (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix setting-based buttons initialization logic Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.ActionDelegate", 4 "type": "@WebInspector.ActionDelegate",
5 "actionId": "main.reload", 5 "actionId": "main.reload",
6 "className": "WebInspector.Main.ReloadActionDelegate", 6 "className": "WebInspector.Main.ReloadActionDelegate",
7 "bindings": [ 7 "bindings": [
8 { 8 {
9 "platform": "windows,linux", 9 "platform": "windows,linux",
10 "shortcut": "F5 Ctrl+R" 10 "shortcut": "F5 Ctrl+R"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 "platform": "windows,linux", 104 "platform": "windows,linux",
105 "shortcut": "Ctrl+0 Ctrl+Numpad0" 105 "shortcut": "Ctrl+0 Ctrl+Numpad0"
106 }, 106 },
107 { 107 {
108 "platform": "mac", 108 "platform": "mac",
109 "shortcut": "Meta+0 Meta+Numpad0" 109 "shortcut": "Meta+0 Meta+Numpad0"
110 } 110 }
111 ] 111 ]
112 }, 112 },
113 { 113 {
114 "type": "@WebInspector.StatusBarButton.Provider",
115 "className": "WebInspector.AdvancedApp.ResponsiveDesignButtonProvide r",
116 "location": "toolbar-left"
117 },
118 {
114 "type": "ui-setting", 119 "type": "ui-setting",
115 "title": "Disable cache (while DevTools is open)", 120 "title": "Disable cache (while DevTools is open)",
116 "settingName": "cacheDisabled", 121 "settingName": "cacheDisabled",
117 "settingType": "checkbox" 122 "settingType": "checkbox"
118 }, 123 },
119 { 124 {
120 "type": "ui-setting", 125 "type": "ui-setting",
121 "section": "Appearance", 126 "section": "Appearance",
122 "title": "Split panels vertically when docked to right", 127 "title": "Split panels vertically when docked to right",
123 "settingName": "splitVerticallyWhenDockedToRight", 128 "settingName": "splitVerticallyWhenDockedToRight",
124 "settingType": "checkbox" 129 "settingType": "checkbox"
125 }, 130 },
126 { 131 {
127 "type": "ui-setting", 132 "type": "ui-setting",
128 "section": "Appearance", 133 "section": "Appearance",
129 "settingType": "custom", 134 "settingType": "custom",
130 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate" 135 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
131 }, 136 },
132 { 137 {
133 "type": "ui-setting", 138 "type": "ui-setting",
134 "section": "Extensions", 139 "section": "Extensions",
135 "settingType": "custom", 140 "settingType": "custom",
136 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate" 141 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate"
137 } 142 }
138 ] 143 ]
139 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698