Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "setting", | 4 "type": "setting", |
| 5 "category": "Console", | 5 "category": "Console", |
| 6 "title": "Enable custom formatters", | 6 "title": "Enable custom formatters", |
| 7 "settingName": "customFormatters", | 7 "settingName": "customFormatters", |
| 8 "settingType": "boolean", | 8 "settingType": "boolean", |
| 9 "defaultValue": false, | 9 "defaultValue": false, |
| 10 "experiment": "customObjectFormatters" | 10 "experiment": "customObjectFormatters" |
| 11 } | 11 } |
| 12 ], | 12 ], |
| 13 "dependencies": [ | 13 "dependencies": [ |
| 14 "bindings", | 14 "bindings", |
| 15 "platform", | 15 "platform", |
| 16 "languages", | |
|
pfeldman
2015/08/13 21:15:46
Is there actually anything in components that depe
wes
2015/08/14 00:55:05
Uhhhhh... there might not be anymore. I moved thin
| |
| 16 "ui" | 17 "ui" |
| 17 ], | 18 ], |
| 18 "scripts": [ | 19 "scripts": [ |
| 19 "BreakpointsSidebarPaneBase.js", | 20 "BreakpointsSidebarPaneBase.js", |
| 20 "CustomPreviewSection.js", | 21 "CustomPreviewSection.js", |
| 21 "DataSaverInfobar.js", | 22 "DataSaverInfobar.js", |
| 22 "DebuggerPresentationUtils.js", | 23 "DebuggerPresentationUtils.js", |
| 23 "DOMBreakpointsSidebarPane.js", | 24 "DOMBreakpointsSidebarPane.js", |
| 24 "DOMPresentationUtils.js", | 25 "DOMPresentationUtils.js", |
| 25 "DockController.js", | 26 "DockController.js", |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 39 "resources": [ | 40 "resources": [ |
| 40 "breakpointsList.css", | 41 "breakpointsList.css", |
| 41 "customPreviewSection.css", | 42 "customPreviewSection.css", |
| 42 "eventListenersView.css", | 43 "eventListenersView.css", |
| 43 "domUtils.css", | 44 "domUtils.css", |
| 44 "inspectorViewTabbedPane.css", | 45 "inspectorViewTabbedPane.css", |
| 45 "objectPropertiesSection.css", | 46 "objectPropertiesSection.css", |
| 46 "objectValue.css" | 47 "objectValue.css" |
| 47 ] | 48 ] |
| 48 } | 49 } |
| OLD | NEW |