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

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 24 matching lines...) Expand all
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", 40 "platform": "windows,linux",
41 "shortcut": "Ctrl+L" 41 "shortcut": "Ctrl+L"
42 }, 42 },
43 { 43 {
44 "platform": "mac", 44 "platform": "mac",
45 "shortcut": "Ctrl+L Meta+L" 45 "shortcut": "Ctrl+L Meta+K"
pfeldman 2015/09/02 20:11:16 I don't think it was Ctrl+L though, was it? (Don't
samli 2015/09/02 21:17:50 It was, just checked.
46 } 46 }
47 ] 47 ]
48 }, 48 },
49 { 49 {
50 "type": "setting", 50 "type": "setting",
51 "category": "Console", 51 "category": "Console",
52 "title": "Hide network messages", 52 "title": "Hide network messages",
53 "settingName": "hideNetworkMessages", 53 "settingName": "hideNetworkMessages",
54 "settingType": "boolean", 54 "settingType": "boolean",
55 "defaultValue": false 55 "defaultValue": false
(...skipping 28 matching lines...) Expand all
84 ], 84 ],
85 "scripts": [ 85 "scripts": [
86 "ConsoleViewMessage.js", 86 "ConsoleViewMessage.js",
87 "ConsoleView.js", 87 "ConsoleView.js",
88 "ConsolePanel.js" 88 "ConsolePanel.js"
89 ], 89 ],
90 "resources": [ 90 "resources": [
91 "consoleView.css" 91 "consoleView.css"
92 ] 92 ]
93 } 93 }
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