OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
5 "name": "network", | 5 "name": "network", |
6 "title": "Network", | 6 "title": "Network", |
7 "order": 1, | 7 "order": 1, |
8 "className": "WebInspector.NetworkPanelFactory" | 8 "className": "WebInspector.NetworkPanelFactory" |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 15 matching lines...) Expand all Loading... |
26 "experiment": "showPrimaryLoadWaterfallInNetworkTimeline", | 26 "experiment": "showPrimaryLoadWaterfallInNetworkTimeline", |
27 "defaultValue": false | 27 "defaultValue": false |
28 }, | 28 }, |
29 { | 29 { |
30 "type": "setting", | 30 "type": "setting", |
31 "category": "Network", | 31 "category": "Network", |
32 "title": "Color-code resource types", | 32 "title": "Color-code resource types", |
33 "settingName": "networkColorCodeResourceTypes", | 33 "settingName": "networkColorCodeResourceTypes", |
34 "settingType": "boolean", | 34 "settingType": "boolean", |
35 "defaultValue": false | 35 "defaultValue": false |
| 36 }, |
| 37 { |
| 38 "type": "@WebInspector.ActionDelegate", |
| 39 "actionId": "network.toggle-recording", |
| 40 "iconClass": "record-toolbar-item", |
| 41 "contextTypes": ["WebInspector.NetworkPanel"], |
| 42 "className": "WebInspector.NetworkPanel.RecordActionDelegate", |
| 43 "bindings": [ |
| 44 { |
| 45 "platform": "windows,linux", |
| 46 "shortcut": "Ctrl+E" |
| 47 }, |
| 48 { |
| 49 "platform": "mac", |
| 50 "shortcut": "Meta+E" |
| 51 } |
| 52 ] |
36 } | 53 } |
37 ], | 54 ], |
38 "dependencies": [ | 55 "dependencies": [ |
39 "source_frame", | 56 "source_frame", |
40 "components", | 57 "components", |
41 "components_lazy", | 58 "components_lazy", |
42 "ui_lazy" | 59 "ui_lazy" |
43 ], | 60 ], |
44 "scripts": [ | 61 "scripts": [ |
45 "EventSourceMessagesView.js", | 62 "EventSourceMessagesView.js", |
(...skipping 19 matching lines...) Expand all Loading... |
65 "resources": [ | 82 "resources": [ |
66 "eventSourceMessagesView.css", | 83 "eventSourceMessagesView.css", |
67 "networkLogView.css", | 84 "networkLogView.css", |
68 "networkPanel.css", | 85 "networkPanel.css", |
69 "requestCookiesView.css", | 86 "requestCookiesView.css", |
70 "requestHeadersView.css", | 87 "requestHeadersView.css", |
71 "webSocketFrameView.css", | 88 "webSocketFrameView.css", |
72 "xmlView.css" | 89 "xmlView.css" |
73 ] | 90 ] |
74 } | 91 } |
OLD | NEW |