| 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": 40, | 7 "order": 40, |
| 8 "className": "WebInspector.NetworkPanelFactory" | 8 "className": "WebInspector.NetworkPanelFactory" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 { | 61 { |
| 62 "type": "drawer-view", | 62 "type": "drawer-view", |
| 63 "name": "network.blocked-urls", | 63 "name": "network.blocked-urls", |
| 64 "title": "Request blocking", | 64 "title": "Request blocking", |
| 65 "persistence": "closeable", | 65 "persistence": "closeable", |
| 66 "order": 60, | 66 "order": 60, |
| 67 "className": "WebInspector.BlockedURLsPane", | 67 "className": "WebInspector.BlockedURLsPane", |
| 68 "experiment": "requestBlocking" | 68 "experiment": "requestBlocking" |
| 69 }, | 69 }, |
| 70 { | 70 { |
| 71 "type": "@WebInspector.ActionDelegate", |
| 72 "actionId": "network.show-config", |
| 73 "title": "Network conditions", |
| 74 "className": "WebInspector.NetworkConfigView.ShowActionDelegate" |
| 75 }, |
| 76 { |
| 77 "type": "context-menu-item", |
| 78 "location": "mainMenu/tools/open", |
| 79 "order": 60, |
| 80 "actionId": "network.show-config" |
| 81 }, |
| 82 { |
| 71 "type": "drawer-view", | 83 "type": "drawer-view", |
| 72 "name": "network.config", | 84 "name": "network.config", |
| 73 "title": "Network conditions", | 85 "title": "Network conditions", |
| 74 "persistence": "closeable", | 86 "persistence": "closeable", |
| 75 "order": 40, | 87 "order": 40, |
| 76 "className": "WebInspector.NetworkConfigView", | 88 "className": "WebInspector.NetworkConfigView", |
| 77 "tags": "disk cache, network throttling, useragent, user agent" | 89 "tags": "disk cache, network throttling, useragent, user agent" |
| 78 } | 90 } |
| 79 ], | 91 ], |
| 80 "dependencies": [ | 92 "dependencies": [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "eventSourceMessagesView.css", | 124 "eventSourceMessagesView.css", |
| 113 "networkConfigView.css", | 125 "networkConfigView.css", |
| 114 "networkLogView.css", | 126 "networkLogView.css", |
| 115 "networkPanel.css", | 127 "networkPanel.css", |
| 116 "requestCookiesView.css", | 128 "requestCookiesView.css", |
| 117 "requestHeadersView.css", | 129 "requestHeadersView.css", |
| 118 "webSocketFrameView.css", | 130 "webSocketFrameView.css", |
| 119 "xmlView.css" | 131 "xmlView.css" |
| 120 ] | 132 ] |
| 121 } | 133 } |
| OLD | NEW |