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

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

Issue 2472213005: DevTools: introduce "Track CSS Usage" experiment (Closed)
Patch Set: Unused CSS highlight in sources panel 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 "sdk", 3 "sdk",
4 "source_frame", 4 "source_frame",
5 "sources", 5 "sources",
6 "ui", 6 "ui",
7 "ui_lazy" 7 "ui_lazy"
8 ], 8 ],
9 "extensions": [ 9 "extensions": [
10 { 10 {
11 "type": "@WebInspector.UISourceCodeFrame.LineDecorator", 11 "type": "@WebInspector.UISourceCodeFrame.LineDecorator",
12 "className": "WebInspector.LineLevelProfile.LineDecorator", 12 "className": "WebInspector.LineLevelProfile.LineDecorator",
13 "decoratorType": "performance" 13 "decoratorType": "performance"
14 },
15 {
16 "type": "@WebInspector.UISourceCodeFrame.LineDecorator",
17 "className": "WebInspector.CoverageProfile.LineDecorator",
18 "decoratorType": "coverage"
14 } 19 }
15 ], 20 ],
16 "scripts": [ 21 "scripts": [
17 "CookiesTable.js", 22 "CookiesTable.js",
18 "FilmStripModel.js", 23 "FilmStripModel.js",
19 "FilmStripView.js", 24 "FilmStripView.js",
20 "LineLevelProfile.js" 25 "LineLevelProfile.js",
26 "CoverageProfile.js"
21 ], 27 ],
22 "resources": [ 28 "resources": [
23 "filmStripDialog.css", 29 "filmStripDialog.css",
24 "filmStripView.css" 30 "filmStripView.css"
25 ] 31 ]
26 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698