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

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

Issue 451713002: DevTools: Introduce module initializers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "resources", 5 "name": "resources",
6 "title": "Resources", 6 "title": "Resources",
7 "order": 5, 7 "order": 5,
8 "className": "WebInspector.ResourcesPanel" 8 "className": "WebInspector.ResourcesPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.Revealer", 11 "type": "@WebInspector.Revealer",
12 "contextTypes": ["WebInspector.Resource"], 12 "contextTypes": ["WebInspector.Resource"],
13 "className": "WebInspector.ResourcesPanel.ResourceRevealer" 13 "className": "WebInspector.ResourcesPanel.ResourceRevealer"
14 } 14 }
15 ], 15 ],
16 "dependencies": [ "source_frame" ], 16 "dependencies": ["source_frame"],
17 "scripts": [ "ResourcesPanel.js" ] 17 "scripts": [
18 "ApplicationCacheItemsView.js",
19 "CookieItemsView.js",
20 "DOMStorageItemsView.js",
21 "DatabaseQueryView.js",
22 "DatabaseTableView.js",
23 "DirectoryContentView.js",
24 "IndexedDBViews.js",
25 "FileContentView.js",
26 "FileSystemView.js",
27 "ResourcesPanel.js"
28 ]
18 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698