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

Side by Side Diff: Source/devtools/front_end/inspector.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 { "name": "platform", "type": "autostart" }, 2 { "name": "platform", "type": "autostart" },
3 { "name": "main", "type": "autostart" }, 3 { "name": "main", "type": "autostart" },
4 { "name": "languages", "type": "autostart" },
pfeldman 2015/08/13 21:15:46 This should not be autostart - extensions module w
wes 2015/08/14 01:13:32 If "components" or "extensions" module has a real
pfeldman 2015/08/17 21:15:51 If languages has API and compact implementation, i
4 { "name": "components", "type": "autostart" }, 5 { "name": "components", "type": "autostart" },
5 { "name": "ui", "type": "autostart" }, 6 { "name": "ui", "type": "autostart" },
6 { "name": "sdk", "type": "autostart" }, 7 { "name": "sdk", "type": "autostart" },
7 { "name": "host", "type": "autostart" }, 8 { "name": "host", "type": "autostart" },
8 { "name": "common", "type": "autostart" }, 9 { "name": "common", "type": "autostart" },
9 { "name": "emulation", "type": "autostart" }, 10 { "name": "emulation", "type": "autostart" },
10 { "name": "workspace", "type": "autostart" }, 11 { "name": "workspace", "type": "autostart" },
11 { "name": "bindings", "type": "autostart" }, 12 { "name": "bindings", "type": "autostart" },
12 { "name": "extensions", "type": "autostart" }, 13 { "name": "extensions", "type": "autostart" },
13 { "name": "ui_lazy" }, 14 { "name": "ui_lazy" },
(...skipping 15 matching lines...) Expand all
29 { "name": "snippets" }, 30 { "name": "snippets" },
30 { "name": "accessibility" }, 31 { "name": "accessibility" },
31 { "name": "animation" }, 32 { "name": "animation" },
32 { "name": "screencast", "condition": "remoteFrontend", "type": "remote" }, 33 { "name": "screencast", "condition": "remoteFrontend", "type": "remote" },
33 { "name": "emulated_devices", "type": "remote" }, 34 { "name": "emulated_devices", "type": "remote" },
34 35
35 { "name": "heap_snapshot_worker", "type": "worker" }, 36 { "name": "heap_snapshot_worker", "type": "worker" },
36 { "name": "script_formatter_worker", "type": "worker" }, 37 { "name": "script_formatter_worker", "type": "worker" },
37 { "name": "temp_storage_shared_worker", "type": "worker" } 38 { "name": "temp_storage_shared_worker", "type": "worker" }
38 ] 39 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698