Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: Source/devtools/front_end/components/module.json

Issue 1264133002: Devtools: [WIP] Implement enhanced devtools extension language APIs Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modify override dropdown to apply to console completions & transpile Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698