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 }, | |
| 12 { | |
| 13 "type": "@WebInspector.DOMPresentationUtils.MarkerDecorator", | |
| 14 "className": "WebInspector.DOMBreakpointsSidebarPane.MarkerDecorator ", | |
| 15 "marker": "breakpoint" | |
|
dgozman
2015/08/07 23:35:05
I'd name markers like "breakpoint-marker" just for
pfeldman
2015/08/10 21:25:16
Done.
| |
| 11 } | 16 } |
| 12 ], | 17 ], |
| 13 "dependencies": [ | 18 "dependencies": [ |
| 14 "bindings", | 19 "bindings", |
| 15 "platform", | 20 "platform", |
| 16 "ui" | 21 "ui" |
| 17 ], | 22 ], |
| 18 "scripts": [ | 23 "scripts": [ |
| 19 "BreakpointsSidebarPaneBase.js", | 24 "BreakpointsSidebarPaneBase.js", |
| 20 "CustomPreviewSection.js", | 25 "CustomPreviewSection.js", |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 39 "resources": [ | 44 "resources": [ |
| 40 "breakpointsList.css", | 45 "breakpointsList.css", |
| 41 "customPreviewSection.css", | 46 "customPreviewSection.css", |
| 42 "eventListenersView.css", | 47 "eventListenersView.css", |
| 43 "domUtils.css", | 48 "domUtils.css", |
| 44 "inspectorViewTabbedPane.css", | 49 "inspectorViewTabbedPane.css", |
| 45 "objectPropertiesSection.css", | 50 "objectPropertiesSection.css", |
| 46 "objectValue.css" | 51 "objectValue.css" |
| 47 ] | 52 ] |
| 48 } | 53 } |
| OLD | NEW |