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

Side by Side Diff: Source/devtools/front_end/components/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.ContextMenu.Provider", 4 "type": "@WebInspector.ContextMenu.Provider",
5 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"], 5 "contextTypes": ["WebInspector.UISourceCode", "WebInspector.Resource ", "WebInspector.NetworkRequest", "Node"],
6 "className": "WebInspector.HandlerRegistry.ContextMenuProvider" 6 "className": "WebInspector.HandlerRegistry.ContextMenuProvider"
7 },
8 {
9 "type": "@WebInspector.ActionDelegate",
10 "actionId": "main.toggle-element-search",
11 "className": "WebInspector.InspectElementModeController.ToggleSearch ActionDelegate",
12 "bindings": [
13 {
14 "platform": "windows,linux",
15 "shortcut": "Ctrl+Shift+C"
16 },
17 {
18 "platform": "mac",
19 "shortcut": "Meta+Shift+C"
20 }
21 ]
22 },
23 {
24 "type": "@WebInspector.StatusBarButton.Provider",
25 "className": "WebInspector.InspectElementModeController.ToggleButton Provider",
26 "location": "toolbar-left",
27 "actionId": "main.toggle-element-search"
28 },
29 {
30 "type": "@WebInspector.StatusBarButton.Provider",
31 "className": "WebInspector.DockController.ButtonProvider",
32 "location": "toolbar-right"
7 } 33 }
8 ] 34 ]
9 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698