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

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: review comments addressed Created 4 years, 2 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..a50a29f59f4e8f6d7399d77fdb3a9c5cfeba504c 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-sources",
+ "className": "WebInspector.SourcesNavigatorView",
+ "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