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

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: Get rid of components/module.json 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.ContextMenu.Provider",
5 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"],
6 "className": "WebInspector.HandlerRegistry.ContextMenuProvider"
7 },
8 {
4 "type": "@WebInspector.ActionDelegate", 9 "type": "@WebInspector.ActionDelegate",
5 "actionId": "main.reload", 10 "actionId": "main.reload",
6 "className": "WebInspector.Main.ReloadActionDelegate", 11 "className": "WebInspector.Main.ReloadActionDelegate",
7 "bindings": [ 12 "bindings": [
8 { 13 {
9 "platform": "windows,linux", 14 "platform": "windows,linux",
10 "shortcut": "F5 Ctrl+R" 15 "shortcut": "F5 Ctrl+R"
11 }, 16 },
12 { 17 {
13 "platform": "mac", 18 "platform": "mac",
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 "platform": "windows,linux", 109 "platform": "windows,linux",
105 "shortcut": "Ctrl+0 Ctrl+Numpad0" 110 "shortcut": "Ctrl+0 Ctrl+Numpad0"
106 }, 111 },
107 { 112 {
108 "platform": "mac", 113 "platform": "mac",
109 "shortcut": "Meta+0 Meta+Numpad0" 114 "shortcut": "Meta+0 Meta+Numpad0"
110 } 115 }
111 ] 116 ]
112 }, 117 },
113 { 118 {
119 "type": "@WebInspector.StatusBarButton.Provider",
120 "className": "WebInspector.InspectElementModeController.ToggleButton Provider",
121 "location": "toolbar-left",
122 "actionId": "main.toggle-element-search"
123 },
124 {
125 "type": "@WebInspector.StatusBarButton.Provider",
126 "className": "WebInspector.AdvancedApp.ResponsiveDesignButtonProvide r",
127 "location": "toolbar-left"
128 },
129 {
130 "type": "@WebInspector.StatusBarButton.Provider",
131 "className": "WebInspector.DockController.ButtonProvider",
132 "location": "toolbar-right"
133 },
134 {
114 "type": "ui-setting", 135 "type": "ui-setting",
115 "title": "Disable cache (while DevTools is open)", 136 "title": "Disable cache (while DevTools is open)",
116 "settingName": "cacheDisabled", 137 "settingName": "cacheDisabled",
117 "settingType": "checkbox" 138 "settingType": "checkbox"
118 }, 139 },
119 { 140 {
120 "type": "ui-setting", 141 "type": "ui-setting",
121 "section": "Appearance", 142 "section": "Appearance",
122 "title": "Split panels vertically when docked to right", 143 "title": "Split panels vertically when docked to right",
123 "settingName": "splitVerticallyWhenDockedToRight", 144 "settingName": "splitVerticallyWhenDockedToRight",
124 "settingType": "checkbox" 145 "settingType": "checkbox"
125 }, 146 },
126 { 147 {
127 "type": "ui-setting", 148 "type": "ui-setting",
128 "section": "Appearance", 149 "section": "Appearance",
129 "settingType": "custom", 150 "settingType": "custom",
130 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate" 151 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
131 }, 152 },
132 { 153 {
133 "type": "ui-setting", 154 "type": "ui-setting",
134 "section": "Extensions", 155 "section": "Extensions",
135 "settingType": "custom", 156 "settingType": "custom",
136 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate" 157 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate"
137 } 158 }
138 ] 159 ]
139 } 160 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/main/SimpleApp.js ('k') | Source/devtools/front_end/settings/EditFileSystemDialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698