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", | |
pfeldman
2017/04/27 22:20:49
Don't use dependency injection when you depends on
allada
2017/04/28 01:20:07
These are extensions, it is only used to handle th
pfeldman
2017/04/28 21:08:35
I want you to instantiate them via new instead of
| |
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" | |
95 } | 109 } |
96 ], | 110 ], |
97 "dependencies": [ | 111 "dependencies": [ |
98 "source_frame", | 112 "source_frame", |
99 "components", | 113 "components", |
100 "perf_ui", | 114 "perf_ui", |
101 "cookie_table", | 115 "cookie_table", |
102 "data_grid", | 116 "data_grid", |
103 "network_conditions", | 117 "network_conditions", |
104 "object_ui", | 118 "object_ui", |
105 "network_log" | 119 "network_log", |
120 "product_registry" | |
106 ], | 121 ], |
107 "scripts": [ | 122 "scripts": [ |
108 "BlockedURLsPane.js", | 123 "BlockedURLsPane.js", |
109 "EventSourceMessagesView.js", | 124 "EventSourceMessagesView.js", |
110 "FilterSuggestionBuilder.js", | 125 "FilterSuggestionBuilder.js", |
111 "HARWriter.js", | 126 "HARWriter.js", |
112 "JSONView.js", | 127 "JSONView.js", |
113 "RequestView.js", | 128 "RequestView.js", |
114 "NetworkConfigView.js", | 129 "NetworkConfigView.js", |
115 "NetworkDataGridNode.js", | 130 "NetworkDataGridNode.js", |
116 "NetworkItemView.js", | 131 "NetworkItemView.js", |
117 "NetworkTimeCalculator.js", | 132 "NetworkTimeCalculator.js", |
118 "NetworkLogView.js", | 133 "NetworkLogView.js", |
119 "NetworkLogViewColumns.js", | 134 "NetworkLogViewColumns.js", |
135 "NetworkGroupers.js", | |
120 "NetworkManageCustomHeadersView.js", | 136 "NetworkManageCustomHeadersView.js", |
121 "NetworkOverview.js", | 137 "NetworkOverview.js", |
122 "NetworkWaterfallColumn.js", | 138 "NetworkWaterfallColumn.js", |
123 "RequestCookiesView.js", | 139 "RequestCookiesView.js", |
124 "RequestHeadersView.js", | 140 "RequestHeadersView.js", |
125 "RequestHTMLView.js", | 141 "RequestHTMLView.js", |
126 "RequestPreviewView.js", | 142 "RequestPreviewView.js", |
127 "RequestResponseView.js", | 143 "RequestResponseView.js", |
128 "RequestTimingView.js", | 144 "RequestTimingView.js", |
129 "ResourceWebSocketFrameView.js", | 145 "ResourceWebSocketFrameView.js", |
(...skipping 10 matching lines...) Expand all Loading... | |
140 "networkTimingTable.css", | 156 "networkTimingTable.css", |
141 "networkWaterfallColumn.css", | 157 "networkWaterfallColumn.css", |
142 "requestCookiesView.css", | 158 "requestCookiesView.css", |
143 "requestHeadersTree.css", | 159 "requestHeadersTree.css", |
144 "requestHeadersView.css", | 160 "requestHeadersView.css", |
145 "webSocketFrameView.css", | 161 "webSocketFrameView.css", |
146 "xmlTree.css", | 162 "xmlTree.css", |
147 "xmlView.css" | 163 "xmlView.css" |
148 ] | 164 ] |
149 } | 165 } |
OLD | NEW |