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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/inspector.json

Issue 2600323002: DevTools: extract protocol module (Closed)
Patch Set: move inspector backend commands.js Created 3 years, 11 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 "modules" : [ 2 "modules" : [
3 { "name": "platform", "type": "autostart" }, 3 { "name": "platform", "type": "autostart" },
4 { "name": "main", "type": "autostart" }, 4 { "name": "main", "type": "autostart" },
5 { "name": "components", "type": "autostart"}, 5 { "name": "components", "type": "autostart"},
6 { "name": "ui", "type": "autostart" }, 6 { "name": "ui", "type": "autostart" },
7 { "name": "sdk", "type": "autostart" }, 7 { "name": "sdk", "type": "autostart" },
8 { "name": "protocol", "type": "autostart" },
8 { "name": "host", "type": "autostart" }, 9 { "name": "host", "type": "autostart" },
9 { "name": "common", "type": "autostart" }, 10 { "name": "common", "type": "autostart" },
10 { "name": "emulation", "type": "autostart" }, 11 { "name": "emulation", "type": "autostart" },
11 { "name": "workspace", "type": "autostart" }, 12 { "name": "workspace", "type": "autostart" },
12 { "name": "bindings", "type": "autostart" }, 13 { "name": "bindings", "type": "autostart" },
13 { "name": "persistence", "type": "autostart" }, 14 { "name": "persistence", "type": "autostart" },
14 { "name": "extensions", "type": "autostart" }, 15 { "name": "extensions", "type": "autostart" },
15 { "name": "services", "type": "autostart" }, 16 { "name": "services", "type": "autostart" },
16 { "name": "ui_lazy" }, 17 { "name": "ui_lazy" },
17 { "name": "components_lazy" }, 18 { "name": "components_lazy" },
(...skipping 21 matching lines...) Expand all
39 { "name": "sass", "condition": "!v8only" }, 40 { "name": "sass", "condition": "!v8only" },
40 { "name": "accessibility", "condition": "!v8only", "type": "remote" }, 41 { "name": "accessibility", "condition": "!v8only", "type": "remote" },
41 { "name": "animation", "condition": "!v8only" }, 42 { "name": "animation", "condition": "!v8only" },
42 { "name": "css_tracker", "condition": "!v8only" }, 43 { "name": "css_tracker", "condition": "!v8only" },
43 { "name": "screencast", "condition": "remoteFrontend", "type": "remote" }, 44 { "name": "screencast", "condition": "remoteFrontend", "type": "remote" },
44 { "name": "emulated_devices", "condition": "!v8only" , "type": "remote" } 45 { "name": "emulated_devices", "condition": "!v8only" , "type": "remote" }
45 ], 46 ],
46 47
47 "has_html": true 48 "has_html": true
48 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698