| 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": "Network.NetworkPanel" | 9 "className": "Network.NetworkPanel" |
| 10 }, | 10 }, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "value": true, | 56 "value": true, |
| 57 "title": "Group network log items by frame" | 57 "title": "Group network log items by frame" |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 "value": false, | 60 "value": false, |
| 61 "title": "Don't group network log items by frame" | 61 "title": "Don't group network log items by frame" |
| 62 } | 62 } |
| 63 ] | 63 ] |
| 64 }, | 64 }, |
| 65 { | 65 { |
| 66 "type": "setting", | |
| 67 "category": "Network", | |
| 68 "storageType": "session", | |
| 69 "title": "Preserve log", | |
| 70 "settingName": "network.preserve-log", | |
| 71 "settingType": "boolean", | |
| 72 "defaultValue": false, | |
| 73 "tags": "preserve, clear, reset", | |
| 74 "options": [ | |
| 75 { | |
| 76 "value": true, | |
| 77 "title": "Do not preserve log on page reload / navigation" | |
| 78 }, | |
| 79 { | |
| 80 "value": false, | |
| 81 "title": "Preserve log on page reload / navigation" | |
| 82 } | |
| 83 ] | |
| 84 }, | |
| 85 { | |
| 86 "type": "@UI.ActionDelegate", | 66 "type": "@UI.ActionDelegate", |
| 87 "actionId": "network.toggle-recording", | 67 "actionId": "network.toggle-recording", |
| 88 "iconClass": "largeicon-start-recording", | 68 "iconClass": "largeicon-start-recording", |
| 89 "toggledIconClass": "largeicon-stop-recording", | 69 "toggledIconClass": "largeicon-stop-recording", |
| 90 "toggleWithRedColor": true, | 70 "toggleWithRedColor": true, |
| 91 "contextTypes": [ | 71 "contextTypes": [ |
| 92 "Network.NetworkPanel" | 72 "Network.NetworkPanel" |
| 93 ], | 73 ], |
| 94 "className": "Network.NetworkPanel.RecordActionDelegate", | 74 "className": "Network.NetworkPanel.RecordActionDelegate", |
| 95 "options": [ | 75 "options": [ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "networkTimingTable.css", | 163 "networkTimingTable.css", |
| 184 "networkWaterfallColumn.css", | 164 "networkWaterfallColumn.css", |
| 185 "requestCookiesView.css", | 165 "requestCookiesView.css", |
| 186 "requestHeadersTree.css", | 166 "requestHeadersTree.css", |
| 187 "requestHeadersView.css", | 167 "requestHeadersView.css", |
| 188 "webSocketFrameView.css", | 168 "webSocketFrameView.css", |
| 189 "xmlTree.css", | 169 "xmlTree.css", |
| 190 "xmlView.css" | 170 "xmlView.css" |
| 191 ] | 171 ] |
| 192 } | 172 } |
| OLD | NEW |