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

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

Issue 1312393004: Devtools UI: Fix Chrome focus shortcut and add pause debugger shortcut (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
(...skipping 19 matching lines...) Expand all
30 ] 30 ]
31 }, 31 },
32 { 32 {
33 "type": "@WebInspector.ActionDelegate", 33 "type": "@WebInspector.ActionDelegate",
34 "actionId": "console.clear", 34 "actionId": "console.clear",
35 "title": "Clear console", 35 "title": "Clear console",
36 "iconClass": "clear-toolbar-item", 36 "iconClass": "clear-toolbar-item",
37 "className": "WebInspector.ConsoleView.ActionDelegate", 37 "className": "WebInspector.ConsoleView.ActionDelegate",
38 "bindings": [ 38 "bindings": [
39 { 39 {
40 "platform": "windows,linux",
41 "shortcut": "Ctrl+L" 40 "shortcut": "Ctrl+L"
42 },
43 {
44 "platform": "mac",
45 "shortcut": "Ctrl+L Meta+L"
pfeldman 2015/09/02 02:39:22 Cmd + K used to clear console on Mac.
samli 2015/09/02 19:07:48 Done.
46 } 41 }
47 ] 42 ]
48 }, 43 },
49 { 44 {
50 "type": "setting", 45 "type": "setting",
51 "category": "Console", 46 "category": "Console",
52 "title": "Hide network messages", 47 "title": "Hide network messages",
53 "settingName": "hideNetworkMessages", 48 "settingName": "hideNetworkMessages",
54 "settingType": "boolean", 49 "settingType": "boolean",
55 "defaultValue": false 50 "defaultValue": false
(...skipping 28 matching lines...) Expand all
84 ], 79 ],
85 "scripts": [ 80 "scripts": [
86 "ConsoleViewMessage.js", 81 "ConsoleViewMessage.js",
87 "ConsoleView.js", 82 "ConsoleView.js",
88 "ConsolePanel.js" 83 "ConsolePanel.js"
89 ], 84 ],
90 "resources": [ 85 "resources": [
91 "consoleView.css" 86 "consoleView.css"
92 ] 87 ]
93 } 88 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698