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

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

Issue 2608043002: DevTools: extract modules (with extensions) (Closed)
Patch Set: fix externs (PerfUI) 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network/module.json
diff --git a/third_party/WebKit/Source/devtools/front_end/network/module.json b/third_party/WebKit/Source/devtools/front_end/network/module.json
index 1209c39953f5894fe713ec6c3c8e223b5946b893..1478116c35e5d6c603f36813825537cf4f43af48 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/module.json
+++ b/third_party/WebKit/Source/devtools/front_end/network/module.json
@@ -10,12 +10,18 @@
},
{
"type": "@UI.ContextMenu.Provider",
- "contextTypes": ["SDK.NetworkRequest", "SDK.Resource", "Workspace.UISourceCode"],
+ "contextTypes": [
+ "SDK.NetworkRequest",
+ "SDK.Resource",
+ "Workspace.UISourceCode"
+ ],
"className": "Network.NetworkPanel.ContextMenuProvider"
},
{
"type": "@Common.Revealer",
- "contextTypes": ["SDK.NetworkRequest"],
+ "contextTypes": [
+ "SDK.NetworkRequest"
+ ],
"className": "Network.NetworkPanel.RequestRevealer"
},
{
@@ -27,8 +33,14 @@
"defaultValue": false,
"tags": "color code, resource type",
"options": [
- { "value": true, "title": "Color code by resource type" },
- { "value": false, "title": "Use default colors" }
+ {
+ "value": true,
+ "title": "Color code by resource type"
+ },
+ {
+ "value": false,
+ "title": "Use default colors"
+ }
]
},
{
@@ -44,11 +56,19 @@
"iconClass": "largeicon-start-recording",
"toggledIconClass": "largeicon-stop-recording",
"toggleWithRedColor": true,
- "contextTypes": ["Network.NetworkPanel"],
+ "contextTypes": [
+ "Network.NetworkPanel"
+ ],
"className": "Network.NetworkPanel.RecordActionDelegate",
"options": [
- { "value": true, "title": "Record network log" },
- { "value": false, "title": "Stop recording network log" }
+ {
+ "value": true,
+ "title": "Record network log"
+ },
+ {
+ "value": false,
+ "title": "Stop recording network log"
+ }
],
"bindings": [
{
@@ -86,7 +106,8 @@
"source_frame",
"components",
"components_lazy",
- "ui_lazy"
+ "ui_lazy",
+ "perf_ui"
],
"scripts": [
"BlockedURLsPane.js",

Powered by Google App Engine
This is Rietveld 408576698