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

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

Issue 1273363002: Devtools UI: Show multiple shortcuts, show more shortcuts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "console", 5 "name": "console",
6 "title": "Console", 6 "title": "Console",
7 "order": 20, 7 "order": 20,
8 "className": "WebInspector.ConsolePanelFactory" 8 "className": "WebInspector.ConsolePanelFactory"
9 }, 9 },
10 { 10 {
11 "type": "drawer-view", 11 "type": "drawer-view",
12 "name": "console", 12 "name": "console",
13 "title": "Console", 13 "title": "Console",
14 "order": "0", 14 "order": "0",
15 "className": "WebInspector.ConsolePanel.WrapperView" 15 "className": "WebInspector.ConsolePanel.WrapperView"
16 }, 16 },
17 { 17 {
18 "type": "@WebInspector.Revealer", 18 "type": "@WebInspector.Revealer",
19 "contextTypes": ["WebInspector.Console"], 19 "contextTypes": ["WebInspector.Console"],
20 "className": "WebInspector.ConsolePanel.ConsoleRevealer" 20 "className": "WebInspector.ConsolePanel.ConsoleRevealer"
21 }, 21 },
22 { 22 {
23 "type": "@WebInspector.ActionDelegate", 23 "type": "@WebInspector.ActionDelegate",
24 "actionId": "console.show", 24 "actionId": "console.show",
25 "className": "WebInspector.ConsoleView.ShowConsoleActionDelegate", 25 "className": "WebInspector.ConsoleView.ActionDelegate",
26 "bindings": [ 26 "bindings": [
27 { 27 {
28 "shortcut": "Ctrl+`" 28 "shortcut": "Ctrl+`"
29 } 29 }
30 ] 30 ]
31 }, 31 },
32 { 32 {
33 "type": "@WebInspector.ActionDelegate",
34 "actionId": "console.clear",
35 "className": "WebInspector.ConsoleView.ActionDelegate",
36 "bindings": [
37 {
38 "platform": "windows,linux",
39 "shortcut": "Ctrl+L"
40 },
41 {
42 "platform": "mac",
43 "shortcut": "Ctrl+L Meta+L"
44 }
45 ]
46 },
47 {
33 "type": "setting", 48 "type": "setting",
34 "category": "Console", 49 "category": "Console",
35 "title": "Hide network messages", 50 "title": "Hide network messages",
36 "settingName": "hideNetworkMessages", 51 "settingName": "hideNetworkMessages",
37 "settingType": "boolean", 52 "settingType": "boolean",
38 "defaultValue": false 53 "defaultValue": false
39 }, 54 },
40 { 55 {
41 "type": "setting", 56 "type": "setting",
42 "category": "Console", 57 "category": "Console",
(...skipping 24 matching lines...) Expand all
67 ], 82 ],
68 "scripts": [ 83 "scripts": [
69 "ConsoleViewMessage.js", 84 "ConsoleViewMessage.js",
70 "ConsoleView.js", 85 "ConsoleView.js",
71 "ConsolePanel.js" 86 "ConsolePanel.js"
72 ], 87 ],
73 "resources": [ 88 "resources": [
74 "consoleView.css" 89 "consoleView.css"
75 ] 90 ]
76 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698