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

Side by Side Diff: Source/devtools/front_end/profiler/module.json

Issue 268293003: DevTools: Get rid of WebInspector.panels (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "profiles", 5 "name": "profiles",
6 "title": "Profiles", 6 "title": "Profiles",
7 "order": 4, 7 "order": 4,
8 "className": "WebInspector.ProfilesPanel" 8 "className": "WebInspector.ProfilesPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.RemoteObject"], 12 "contextTypes": ["WebInspector.RemoteObject"],
13 "className": "WebInspector.ProfilesPanel.ContextMenuProvider" 13 "className": "WebInspector.ProfilesPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "@WebInspector.Revealer",
17 "contextTypes": ["WebInspector.ProfileHeader"],
18 "className": "WebInspector.ProfilesPanel.ProfileRevealer"
19 },
20 {
16 "type": "ui-setting", 21 "type": "ui-setting",
17 "section": "Profiler", 22 "section": "Profiler",
18 "title": "Show advanced heap snapshot properties", 23 "title": "Show advanced heap snapshot properties",
19 "settingName": "showAdvancedHeapSnapshotProperties", 24 "settingName": "showAdvancedHeapSnapshotProperties",
20 "settingType": "checkbox" 25 "settingType": "checkbox"
21 }, 26 },
22 { 27 {
23 "type": "ui-setting", 28 "type": "ui-setting",
24 "section": "Profiler", 29 "section": "Profiler",
25 "title": "High resolution CPU profiling", 30 "title": "High resolution CPU profiling",
26 "settingName": "highResolutionCpuProfiling", 31 "settingName": "highResolutionCpuProfiling",
27 "settingType": "checkbox" 32 "settingType": "checkbox"
28 } 33 }
29 ], 34 ],
30 "scripts": [ "ProfilesPanel.js" ] 35 "scripts": [ "ProfilesPanel.js" ]
31 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698