| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "network", | 6 "id": "network", |
| 7 "title": "Network", | 7 "title": "Network", |
| 8 "order": 40, | 8 "order": 40, |
| 9 "className": "WebInspector.NetworkPanel" | 9 "className": "WebInspector.NetworkPanel" |
| 10 }, | 10 }, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "type": "@WebInspector.ActionDelegate", | 35 "type": "@WebInspector.ActionDelegate", |
| 36 "actionId": "network.blocked-urls.show", | 36 "actionId": "network.blocked-urls.show", |
| 37 "className": "WebInspector.BlockedURLsPane.ActionDelegate", | 37 "className": "WebInspector.BlockedURLsPane.ActionDelegate", |
| 38 "iconClass": "block-toolbar-item", | 38 "iconClass": "block-toolbar-item", |
| 39 "title": "Block network requests" | 39 "title": "Block network requests" |
| 40 }, | 40 }, |
| 41 { | 41 { |
| 42 "type": "@WebInspector.ActionDelegate", | 42 "type": "@WebInspector.ActionDelegate", |
| 43 "actionId": "network.toggle-recording", | 43 "actionId": "network.toggle-recording", |
| 44 "iconClass": "record-toolbar-item", | 44 "iconClass": "record-toolbar-item", |
| 45 "toggledIconClass": "active-recording-toolbar-item", |
| 45 "contextTypes": ["WebInspector.NetworkPanel"], | 46 "contextTypes": ["WebInspector.NetworkPanel"], |
| 46 "className": "WebInspector.NetworkPanel.RecordActionDelegate", | 47 "className": "WebInspector.NetworkPanel.RecordActionDelegate", |
| 47 "options": [ | 48 "options": [ |
| 48 { "value": true, "title": "Record network log" }, | 49 { "value": true, "title": "Record network log" }, |
| 49 { "value": false, "title": "Stop recording network log" } | 50 { "value": false, "title": "Stop recording network log" } |
| 50 ], | 51 ], |
| 51 "bindings": [ | 52 "bindings": [ |
| 52 { | 53 { |
| 53 "platform": "windows,linux", | 54 "platform": "windows,linux", |
| 54 "shortcut": "Ctrl+E" | 55 "shortcut": "Ctrl+E" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "networkPanel.css", | 122 "networkPanel.css", |
| 122 "networkTimelineColumn.css", | 123 "networkTimelineColumn.css", |
| 123 "requestCookiesView.css", | 124 "requestCookiesView.css", |
| 124 "requestHeadersTree.css", | 125 "requestHeadersTree.css", |
| 125 "requestHeadersView.css", | 126 "requestHeadersView.css", |
| 126 "webSocketFrameView.css", | 127 "webSocketFrameView.css", |
| 127 "xmlTree.css", | 128 "xmlTree.css", |
| 128 "xmlView.css" | 129 "xmlView.css" |
| 129 ] | 130 ] |
| 130 } | 131 } |
| OLD | NEW |