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

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

Issue 2453673002: [DevTools] Scope common protocol infrastructure under Protocol namespace in a separate module. (Closed)
Patch Set: Created 4 years, 1 month 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 "dependencies": [ 2 "dependencies": [
3 "common", 3 "common",
4 "host", 4 "host",
5 "platform" 5 "platform",
6 "protocol"
6 ], 7 ],
7 "extensions": [ 8 "extensions": [
8 { 9 {
9 "type": "setting", 10 "type": "setting",
10 "settingName": "blockedURLs", 11 "settingName": "blockedURLs",
11 "settingType": "array", 12 "settingType": "array",
12 "defaultValue": [] 13 "defaultValue": []
13 }, 14 },
14 { 15 {
15 "type": "setting", 16 "type": "setting",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ] 65 ]
65 }, 66 },
66 { 67 {
67 "type": "setting", 68 "type": "setting",
68 "settingName": "showMetricsRulers", 69 "settingName": "showMetricsRulers",
69 "settingType": "boolean", 70 "settingType": "boolean",
70 "defaultValue": false 71 "defaultValue": false
71 } 72 }
72 ], 73 ],
73 "scripts": [ 74 "scripts": [
74 "InspectorBackend.js",
75 "../InspectorBackendCommands.js",
76 "InspectorBackendHostedMode.js",
77 "Target.js", 75 "Target.js",
78 "TargetManager.js", 76 "TargetManager.js",
79 "ApplicationCacheModel.js", 77 "ApplicationCacheModel.js",
80 "Connections.js", 78 "Connections.js",
81 "ConsoleModel.js", 79 "ConsoleModel.js",
82 "ContentProviders.js", 80 "ContentProviders.js",
83 "CookieParser.js", 81 "CookieParser.js",
84 "ProfileTreeModel.js", 82 "ProfileTreeModel.js",
85 "ServerTiming.js", 83 "ServerTiming.js",
86 "CPUProfileDataModel.js", 84 "CPUProfileDataModel.js",
(...skipping 25 matching lines...) Expand all
112 "ResourceTreeModel.js", 110 "ResourceTreeModel.js",
113 "SecurityOriginManager.js", 111 "SecurityOriginManager.js",
114 "SourceMap.js", 112 "SourceMap.js",
115 "NetworkManager.js", 113 "NetworkManager.js",
116 "NetworkRequest.js", 114 "NetworkRequest.js",
117 "PaintProfiler.js", 115 "PaintProfiler.js",
118 "HeapProfilerModel.js", 116 "HeapProfilerModel.js",
119 "../SupportedCSSProperties.js" 117 "../SupportedCSSProperties.js"
120 ], 118 ],
121 "skip_compilation": [ 119 "skip_compilation": [
122 "../InspectorBackendCommands.js",
123 "../SupportedCSSProperties.js" 120 "../SupportedCSSProperties.js"
124 ] 121 ]
125 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698