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

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

Issue 2883143003: Timeline: do not start timeline on regular page reloads (Closed)
Patch Set: minor tweaks Created 3 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
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "view", 4 "type": "view",
5 "location": "panel", 5 "location": "panel",
6 "id": "timeline", 6 "id": "timeline",
7 "title": "Performance", 7 "title": "Performance",
8 "order": 50, 8 "order": 50,
9 "className": "Timeline.TimelinePanel" 9 "className": "Timeline.TimelinePanel"
10 }, 10 },
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "shortcut": "Ctrl+E" 57 "shortcut": "Ctrl+E"
58 }, 58 },
59 { 59 {
60 "platform": "mac", 60 "platform": "mac",
61 "shortcut": "Meta+E" 61 "shortcut": "Meta+E"
62 } 62 }
63 ] 63 ]
64 }, 64 },
65 { 65 {
66 "type": "@UI.ActionDelegate", 66 "type": "@UI.ActionDelegate",
67 "actionId": "timeline.record-reload",
68 "iconClass": "largeicon-refresh",
69 "contextTypes": [
70 "Timeline.TimelinePanel"
71 ],
72 "category": "Performance",
73 "title": "Start profiling and reload page",
74 "className": "Timeline.TimelinePanel.ActionDelegate",
75 "bindings": [
76 {
77 "platform": "windows,linux",
78 "shortcut": "Ctrl+Shift+E"
79 },
80 {
81 "platform": "mac",
82 "shortcut": "Meta+Shift+E"
83 }
84 ]
85 },
86 {
87 "type": "@UI.ActionDelegate",
67 "category": "Timeline", 88 "category": "Timeline",
68 "actionId": "timeline.save-to-file", 89 "actionId": "timeline.save-to-file",
69 "contextTypes": [ 90 "contextTypes": [
70 "Timeline.TimelinePanel" 91 "Timeline.TimelinePanel"
71 ], 92 ],
72 "className": "Timeline.TimelinePanel.ActionDelegate", 93 "className": "Timeline.TimelinePanel.ActionDelegate",
73 "title": "Save profile\u2026", 94 "title": "Save profile\u2026",
74 "bindings": [ 95 "bindings": [
75 { 96 {
76 "platform": "windows,linux", 97 "platform": "windows,linux",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "TimelinePanel.js" 182 "TimelinePanel.js"
162 ], 183 ],
163 "resources": [ 184 "resources": [
164 "invalidationsTree.css", 185 "invalidationsTree.css",
165 "timelineFlamechartPopover.css", 186 "timelineFlamechartPopover.css",
166 "timelinePanel.css", 187 "timelinePanel.css",
167 "timelinePaintProfiler.css", 188 "timelinePaintProfiler.css",
168 "timelineStatusDialog.css" 189 "timelineStatusDialog.css"
169 ] 190 ]
170 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698