OLD | NEW |
1 { | 1 { |
2 "extensions": [ | 2 "extensions": [ |
3 { | 3 { |
4 "type": "@Common.AppProvider", | 4 "type": "@Common.AppProvider", |
5 "className": "Main.SimpleAppProvider", | 5 "className": "Main.SimpleAppProvider", |
6 "order": 10 | 6 "order": 10 |
7 }, | 7 }, |
8 { | 8 { |
9 "type": "@UI.ContextMenu.Provider", | 9 "type": "@UI.ContextMenu.Provider", |
10 "contextTypes": [ | 10 "contextTypes": [ |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 }, | 204 }, |
205 { | 205 { |
206 "type": "@UI.ToolbarItem.Provider", | 206 "type": "@UI.ToolbarItem.Provider", |
207 "className": "Main.Main.NodeIndicator", | 207 "className": "Main.Main.NodeIndicator", |
208 "order": 2, | 208 "order": 2, |
209 "location": "main-toolbar-left", | 209 "location": "main-toolbar-left", |
210 "condition": "!nodeFrontend" | 210 "condition": "!nodeFrontend" |
211 }, | 211 }, |
212 { | 212 { |
213 "type": "@UI.ToolbarItem.Provider", | 213 "type": "@UI.ToolbarItem.Provider", |
214 "className": "Main.Main.WarningErrorCounter", | |
215 "order": 1, | |
216 "location": "main-toolbar-right" | |
217 }, | |
218 { | |
219 "type": "@UI.ToolbarItem.Provider", | |
220 "separator": true, | 214 "separator": true, |
221 "order": 98, | 215 "order": 98, |
222 "location": "main-toolbar-right" | 216 "location": "main-toolbar-right" |
223 }, | 217 }, |
224 { | 218 { |
225 "type": "@UI.ToolbarItem.Provider", | 219 "type": "@UI.ToolbarItem.Provider", |
226 "className": "Main.Main.MainMenuItem", | 220 "className": "Main.Main.MainMenuItem", |
227 "order": 99, | 221 "order": 99, |
228 "location": "main-toolbar-right" | 222 "location": "main-toolbar-right" |
229 }, | 223 }, |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 423 } |
430 ], | 424 ], |
431 "dependencies": [ | 425 "dependencies": [ |
432 "extensions", | 426 "extensions", |
433 "host", | 427 "host", |
434 "platform", | 428 "platform", |
435 "sdk", | 429 "sdk", |
436 "persistence", | 430 "persistence", |
437 "help", | 431 "help", |
438 "console_model", | 432 "console_model", |
439 "network_log" | 433 "network_log", |
| 434 "counters" |
440 ], | 435 ], |
441 "scripts": [ | 436 "scripts": [ |
442 "RenderingOptions.js", | 437 "RenderingOptions.js", |
443 "SimpleApp.js", | 438 "SimpleApp.js", |
444 "GCActionDelegate.js", | 439 "GCActionDelegate.js", |
445 "RequestAppBannerActionDelegate.js", | 440 "RequestAppBannerActionDelegate.js", |
446 "ExecutionContextSelector.js", | 441 "ExecutionContextSelector.js", |
447 "Main.js" | 442 "Main.js" |
448 ], | 443 ], |
449 "resources": [ | 444 "resources": [ |
450 "errorWarningCounter.css", | |
451 "nodeIcon.css", | 445 "nodeIcon.css", |
452 "remoteDebuggingTerminatedScreen.css", | 446 "remoteDebuggingTerminatedScreen.css", |
453 "renderingOptions.css", | 447 "renderingOptions.css", |
454 "targetCrashedScreen.css" | 448 "targetCrashedScreen.css" |
455 ] | 449 ] |
456 } | 450 } |
OLD | NEW |