| 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 { | |
| 83 "type": "drawer-view", | 71 "type": "drawer-view", |
| 84 "name": "network.config", | 72 "name": "network.config", |
| 85 "title": "Network conditions", | 73 "title": "Network conditions", |
| 86 "persistence": "closeable", | 74 "persistence": "closeable", |
| 87 "order": 40, | 75 "order": 40, |
| 88 "className": "WebInspector.NetworkConfigView", | 76 "className": "WebInspector.NetworkConfigView", |
| 89 "tags": "disk cache, network throttling, useragent, user agent" | 77 "tags": "disk cache, network throttling, useragent, user agent" |
| 90 } | 78 } |
| 91 ], | 79 ], |
| 92 "dependencies": [ | 80 "dependencies": [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "eventSourceMessagesView.css", | 112 "eventSourceMessagesView.css", |
| 125 "networkConfigView.css", | 113 "networkConfigView.css", |
| 126 "networkLogView.css", | 114 "networkLogView.css", |
| 127 "networkPanel.css", | 115 "networkPanel.css", |
| 128 "requestCookiesView.css", | 116 "requestCookiesView.css", |
| 129 "requestHeadersView.css", | 117 "requestHeadersView.css", |
| 130 "webSocketFrameView.css", | 118 "webSocketFrameView.css", |
| 131 "xmlView.css" | 119 "xmlView.css" |
| 132 ] | 120 ] |
| 133 } | 121 } |
| OLD | NEW |