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

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: Address comments 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "actionId": "main.debug-reload", 45 "actionId": "main.debug-reload",
46 "className": "WebInspector.Main.DebugReloadActionDelegate", 46 "className": "WebInspector.Main.DebugReloadActionDelegate",
47 "bindings": [ 47 "bindings": [
48 { 48 {
49 "shortcut": "Alt+R" 49 "shortcut": "Alt+R"
50 } 50 }
51 ] 51 ]
52 }, 52 },
53 { 53 {
54 "type": "@WebInspector.ActionDelegate", 54 "type": "@WebInspector.ActionDelegate",
55 "actionId": "main.toggle-element-search",
56 "className": "WebInspector.InspectElementModeController.ToggleSearch ActionDelegate",
57 "bindings": [
58 {
59 "platform": "windows,linux",
60 "shortcut": "Ctrl+Shift+C"
61 },
62 {
63 "platform": "mac",
64 "shortcut": "Meta+Shift+C"
65 }
66 ]
67 },
68 {
69 "type": "@WebInspector.ActionDelegate",
70 "actionId": "main.zoom-in", 55 "actionId": "main.zoom-in",
71 "className": "WebInspector.Main.ZoomInActionDelegate", 56 "className": "WebInspector.Main.ZoomInActionDelegate",
72 "bindings": [ 57 "bindings": [
73 { 58 {
74 "platform": "windows,linux", 59 "platform": "windows,linux",
75 "shortcut": "Ctrl+Plus Ctrl+Shift+Plus Ctrl+NumpadPlus Ctrl+ Shift+NumpadPlus" 60 "shortcut": "Ctrl+Plus Ctrl+Shift+Plus Ctrl+NumpadPlus Ctrl+ Shift+NumpadPlus"
76 }, 61 },
77 { 62 {
78 "platform": "mac", 63 "platform": "mac",
79 "shortcut": "Meta+Plus Meta+Shift+Plus Meta+NumpadPlus Meta+ Shift+NumpadPlus" 64 "shortcut": "Meta+Plus Meta+Shift+Plus Meta+NumpadPlus Meta+ Shift+NumpadPlus"
(...skipping 24 matching lines...) Expand all
104 "platform": "windows,linux", 89 "platform": "windows,linux",
105 "shortcut": "Ctrl+0 Ctrl+Numpad0" 90 "shortcut": "Ctrl+0 Ctrl+Numpad0"
106 }, 91 },
107 { 92 {
108 "platform": "mac", 93 "platform": "mac",
109 "shortcut": "Meta+0 Meta+Numpad0" 94 "shortcut": "Meta+0 Meta+Numpad0"
110 } 95 }
111 ] 96 ]
112 }, 97 },
113 { 98 {
99 "type": "@WebInspector.StatusBarButton.Provider",
100 "className": "WebInspector.AdvancedApp.ResponsiveDesignButtonProvide r",
101 "location": "toolbar-left"
102 },
103 {
114 "type": "ui-setting", 104 "type": "ui-setting",
115 "title": "Disable cache (while DevTools is open)", 105 "title": "Disable cache (while DevTools is open)",
116 "settingName": "cacheDisabled", 106 "settingName": "cacheDisabled",
117 "settingType": "checkbox" 107 "settingType": "checkbox"
118 }, 108 },
119 { 109 {
120 "type": "ui-setting", 110 "type": "ui-setting",
121 "section": "Appearance", 111 "section": "Appearance",
122 "title": "Split panels vertically when docked to right", 112 "title": "Split panels vertically when docked to right",
123 "settingName": "splitVerticallyWhenDockedToRight", 113 "settingName": "splitVerticallyWhenDockedToRight",
124 "settingType": "checkbox" 114 "settingType": "checkbox"
125 }, 115 },
126 { 116 {
127 "type": "ui-setting", 117 "type": "ui-setting",
128 "section": "Appearance", 118 "section": "Appearance",
129 "settingType": "custom", 119 "settingType": "custom",
130 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate" 120 "className": "WebInspector.Main.ShortcutPanelSwitchSettingDelegate"
131 }, 121 },
132 { 122 {
133 "type": "ui-setting", 123 "type": "ui-setting",
134 "section": "Extensions", 124 "section": "Extensions",
135 "settingType": "custom", 125 "settingType": "custom",
136 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate" 126 "className": "WebInspector.HandlerRegistry.OpenAnchorLocationSetting Delegate"
137 } 127 }
138 ] 128 ]
139 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698