Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |