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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/module.json

Issue 2384783003: DevTools: split Sources tree into Network and Filesystem trees. (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sources/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/module.json b/third_party/WebKit/Source/devtools/front_end/sources/module.json
index 43a60c66c759615e415a6912709abc76cb598a00..5c131505b64e3d0753ebf99ec27a24734952d640 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/sources/module.json
@@ -215,43 +215,77 @@
{
"type": "view",
"location": "navigator-view",
- "id": "sources",
+ "id": "navigator-sources",
"title": "Sources",
"order": 1,
"persistence": "permanent",
- "className": "WebInspector.SourcesNavigatorView"
+ "className": "WebInspector.SourcesNavigatorView",
+ "experiment": "!persistence2"
},
{
"type": "view",
"location": "navigator-view",
- "id": "contentScripts",
- "title": "Content scripts",
+ "id": "navigator-network",
+ "title": "Network",
"order": 2,
"persistence": "permanent",
+ "className": "WebInspector.NetworkNavigatorView",
+ "experiment": "persistence2"
+ },
+ {
+ "type": "view",
+ "location": "navigator-view",
+ "id": "navigator-files",
+ "title": "Filesystem",
+ "order": 3,
+ "persistence": "permanent",
+ "className": "WebInspector.FilesNavigatorView",
+ "experiment": "persistence2"
+ },
+ {
+ "type": "view",
+ "location": "navigator-view",
+ "id": "navigator-contentScripts",
+ "title": "Content scripts",
+ "order": 4,
+ "persistence": "permanent",
"className": "WebInspector.ContentScriptsNavigatorView"
},
{
"type": "view",
"location": "navigator-view",
- "id": "snippets",
+ "id": "navigator-snippets",
"title": "Snippets",
- "order": 3,
+ "order": 5,
"persistence": "permanent",
"className": "WebInspector.SnippetsNavigatorView"
},
{
"type": "@WebInspector.NavigatorView",
- "viewId": "sources",
- "className": "WebInspector.SourcesNavigatorView"
+ "viewId": "navigator-source",
dgozman 2016/10/01 01:09:21 navigator-sources
+ "className": "WebInspector.SourceNavigatorView",
dgozman 2016/10/01 01:09:21 Sources (plural)
+ "experiment": "!persistence2"
+ },
+ {
+ "type": "@WebInspector.NavigatorView",
+ "viewId": "navigator-network",
+ "className": "WebInspector.NetworkNavigatorView",
+ "experiment": "persistence2"
+ },
+ {
+ "type": "@WebInspector.NavigatorView",
+ "viewId": "navigator-files",
+ "className": "WebInspector.FilesNavigatorView",
+ "experiment": "persistence2"
},
{
"type": "@WebInspector.NavigatorView",
- "viewId": "contentScripts",
+ "viewId": "navigator-contentScripts",
"className": "WebInspector.ContentScriptsNavigatorView"
},
{
"type": "@WebInspector.NavigatorView",
- "viewId": "snippets",
+ "viewId": "navigator-snippets",
"className": "WebInspector.SnippetsNavigatorView"
},
{

Powered by Google App Engine
This is Rietveld 408576698