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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 }, | 85 }, |
86 { | 86 { |
87 "type": "view", | 87 "type": "view", |
88 "location": "drawer-view", | 88 "location": "drawer-view", |
89 "id": "network.config", | 89 "id": "network.config", |
90 "title": "Network conditions", | 90 "title": "Network conditions", |
91 "persistence": "closeable", | 91 "persistence": "closeable", |
92 "order": 40, | 92 "order": 40, |
93 "className": "Network.NetworkConfigView", | 93 "className": "Network.NetworkConfigView", |
94 "tags": "disk cache, network throttling, useragent, user agent" | 94 "tags": "disk cache, network throttling, useragent, user agent" |
95 }, | |
96 { | |
97 "type": "@Network.GroupLookupInterface", | |
98 "className": "Network.ProductGrouper", | |
99 "experiment": "networkGroupingRequests", | |
100 "title": "Product", | |
101 "id": "product" | |
102 }, | |
103 { | |
104 "type": "@Network.GroupLookupInterface", | |
105 "className": "Network.FrameGrouper", | |
106 "experiment": "networkGroupingRequests", | |
107 "title": "Frame", | |
108 "id": "frame" | |
109 } | 95 } |
110 ], | 96 ], |
111 "dependencies": [ | 97 "dependencies": [ |
112 "source_frame", | 98 "source_frame", |
113 "components", | 99 "components", |
114 "perf_ui", | 100 "perf_ui", |
115 "cookie_table", | 101 "cookie_table", |
116 "data_grid", | 102 "data_grid", |
117 "network_conditions", | 103 "network_conditions", |
118 "object_ui", | 104 "object_ui", |
119 "network_log", | 105 "network_log", |
120 "product_registry" | 106 "product_registry" |
121 ], | 107 ], |
122 "scripts": [ | 108 "scripts": [ |
123 "BlockedURLsPane.js", | 109 "BlockedURLsPane.js", |
124 "EventSourceMessagesView.js", | 110 "EventSourceMessagesView.js", |
125 "FilterSuggestionBuilder.js", | 111 "FilterSuggestionBuilder.js", |
126 "HARWriter.js", | 112 "HARWriter.js", |
127 "JSONView.js", | 113 "JSONView.js", |
128 "RequestView.js", | 114 "RequestView.js", |
129 "NetworkConfigView.js", | 115 "NetworkConfigView.js", |
130 "NetworkDataGridNode.js", | 116 "NetworkDataGridNode.js", |
131 "NetworkItemView.js", | 117 "NetworkItemView.js", |
132 "NetworkTimeCalculator.js", | 118 "NetworkTimeCalculator.js", |
133 "NetworkLogView.js", | 119 "NetworkLogView.js", |
134 "NetworkLogViewColumns.js", | 120 "NetworkLogViewColumns.js", |
135 "NetworkGroupers.js", | 121 "NetworkFrameGrouper.js", |
136 "NetworkManageCustomHeadersView.js", | 122 "NetworkManageCustomHeadersView.js", |
137 "NetworkOverview.js", | 123 "NetworkOverview.js", |
138 "NetworkWaterfallColumn.js", | 124 "NetworkWaterfallColumn.js", |
139 "RequestCookiesView.js", | 125 "RequestCookiesView.js", |
140 "RequestHeadersView.js", | 126 "RequestHeadersView.js", |
141 "RequestHTMLView.js", | 127 "RequestHTMLView.js", |
142 "RequestPreviewView.js", | 128 "RequestPreviewView.js", |
143 "RequestResponseView.js", | 129 "RequestResponseView.js", |
144 "RequestTimingView.js", | 130 "RequestTimingView.js", |
145 "ResourceWebSocketFrameView.js", | 131 "ResourceWebSocketFrameView.js", |
(...skipping 10 matching lines...) Expand all Loading... |
156 "networkTimingTable.css", | 142 "networkTimingTable.css", |
157 "networkWaterfallColumn.css", | 143 "networkWaterfallColumn.css", |
158 "requestCookiesView.css", | 144 "requestCookiesView.css", |
159 "requestHeadersTree.css", | 145 "requestHeadersTree.css", |
160 "requestHeadersView.css", | 146 "requestHeadersView.css", |
161 "webSocketFrameView.css", | 147 "webSocketFrameView.css", |
162 "xmlTree.css", | 148 "xmlTree.css", |
163 "xmlView.css" | 149 "xmlView.css" |
164 ] | 150 ] |
165 } | 151 } |
OLD | NEW |