Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "extensions": [ | |
| 3 { | |
| 4 "type": "@WebInspector.PanelFactory", | |
| 5 "name": "security", | |
| 6 "title": "Security", | |
| 7 "order": 7, | |
| 8 "className": "WebInspector.SecurityPanelFactory" | |
| 9 } | |
| 10 ], | |
| 11 "dependencies": [], | |
|
dgozman
2015/06/03 10:12:35
You probably have to depend on platform, host, and
lgarron
2015/06/11 22:54:47
What are each of these? The other panels don't hav
dgozman
2015/06/12 06:20:22
If you use something (class, function) from a file
lgarron
2015/06/12 19:56:01
Makes sense. I didn't know anything about the comp
dgozman
2015/06/15 16:58:41
Yep.
| |
| 12 "experiment": "securityPanel", | |
| 13 "scripts": [ | |
| 14 "SecurityPanel.js" | |
| 15 ], | |
| 16 "resources": [ | |
| 17 "securityPanel.css" | |
| 18 ] | |
| 19 } | |
| OLD | NEW |