| 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 { |
| 66 "type": "@UI.ActionDelegate", | 86 "type": "@UI.ActionDelegate", |
| 67 "actionId": "network.toggle-recording", | 87 "actionId": "network.toggle-recording", |
| 68 "iconClass": "largeicon-start-recording", | 88 "iconClass": "largeicon-start-recording", |
| 69 "toggledIconClass": "largeicon-stop-recording", | 89 "toggledIconClass": "largeicon-stop-recording", |
| 70 "toggleWithRedColor": true, | 90 "toggleWithRedColor": true, |
| 71 "contextTypes": [ | 91 "contextTypes": [ |
| 72 "Network.NetworkPanel" | 92 "Network.NetworkPanel" |
| 73 ], | 93 ], |
| 74 "className": "Network.NetworkPanel.RecordActionDelegate", | 94 "className": "Network.NetworkPanel.RecordActionDelegate", |
| 75 "options": [ | 95 "options": [ |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "networkTimingTable.css", | 181 "networkTimingTable.css", |
| 162 "networkWaterfallColumn.css", | 182 "networkWaterfallColumn.css", |
| 163 "requestCookiesView.css", | 183 "requestCookiesView.css", |
| 164 "requestHeadersTree.css", | 184 "requestHeadersTree.css", |
| 165 "requestHeadersView.css", | 185 "requestHeadersView.css", |
| 166 "webSocketFrameView.css", | 186 "webSocketFrameView.css", |
| 167 "xmlTree.css", | 187 "xmlTree.css", |
| 168 "xmlView.css" | 188 "xmlView.css" |
| 169 ] | 189 ] |
| 170 } | 190 } |
| OLD | NEW |