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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots 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 "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": "Timeline", 7 "title": "Timeline",
8 "order": 50, 8 "order": 50,
9 "className": "WebInspector.TimelinePanel" 9 "className": "Timeline.TimelinePanel"
10 }, 10 },
11 { 11 {
12 "type": "setting", 12 "type": "setting",
13 "category": "Profiler", 13 "category": "Profiler",
14 "title": "Hide chrome frame in Layers view", 14 "title": "Hide chrome frame in Layers view",
15 "settingName": "frameViewerHideChromeWindow", 15 "settingName": "frameViewerHideChromeWindow",
16 "settingType": "boolean", 16 "settingType": "boolean",
17 "defaultValue": false 17 "defaultValue": false
18 }, 18 },
19 { 19 {
20 "type": "@WebInspector.QueryParamHandler", 20 "type": "@Common.QueryParamHandler",
21 "name": "loadTimelineFromURL", 21 "name": "loadTimelineFromURL",
22 "className": "WebInspector.LoadTimelineHandler" 22 "className": "Timeline.LoadTimelineHandler"
23 }, 23 },
24 { 24 {
25 "type": "context-menu-item", 25 "type": "context-menu-item",
26 "location": "timelineMenu/open", 26 "location": "timelineMenu/open",
27 "actionId": "timeline.load-from-file" 27 "actionId": "timeline.load-from-file"
28 }, 28 },
29 { 29 {
30 "type": "context-menu-item", 30 "type": "context-menu-item",
31 "location": "timelineMenu/open", 31 "location": "timelineMenu/open",
32 "actionId": "timeline.save-to-file" 32 "actionId": "timeline.save-to-file"
33 }, 33 },
34 { 34 {
35 "type": "@WebInspector.ActionDelegate", 35 "type": "@UI.ActionDelegate",
36 "actionId": "timeline.toggle-recording", 36 "actionId": "timeline.toggle-recording",
37 "iconClass": "largeicon-start-recording", 37 "iconClass": "largeicon-start-recording",
38 "toggledIconClass": "largeicon-stop-recording", 38 "toggledIconClass": "largeicon-stop-recording",
39 "toggleWithRedColor": true, 39 "toggleWithRedColor": true,
40 "contextTypes": ["WebInspector.TimelinePanel"], 40 "contextTypes": ["Timeline.TimelinePanel"],
41 "className": "WebInspector.TimelinePanel.ActionDelegate", 41 "className": "Timeline.TimelinePanel.ActionDelegate",
42 "options": [ 42 "options": [
43 { "value": true, "title": "Record" }, 43 { "value": true, "title": "Record" },
44 { "value": false, "title": "Stop" } 44 { "value": false, "title": "Stop" }
45 ], 45 ],
46 "bindings": [ 46 "bindings": [
47 { 47 {
48 "platform": "windows,linux", 48 "platform": "windows,linux",
49 "shortcut": "Ctrl+E" 49 "shortcut": "Ctrl+E"
50 }, 50 },
51 { 51 {
52 "platform": "mac", 52 "platform": "mac",
53 "shortcut": "Meta+E" 53 "shortcut": "Meta+E"
54 } 54 }
55 ] 55 ]
56 }, 56 },
57 { 57 {
58 "type": "@WebInspector.ActionDelegate", 58 "type": "@UI.ActionDelegate",
59 "category": "Timeline", 59 "category": "Timeline",
60 "actionId": "timeline.save-to-file", 60 "actionId": "timeline.save-to-file",
61 "contextTypes": ["WebInspector.TimelinePanel"], 61 "contextTypes": ["Timeline.TimelinePanel"],
62 "className": "WebInspector.TimelinePanel.ActionDelegate", 62 "className": "Timeline.TimelinePanel.ActionDelegate",
63 "title": "Save Timeline data\u2026", 63 "title": "Save Timeline data\u2026",
64 "bindings": [ 64 "bindings": [
65 { 65 {
66 "platform": "windows,linux", 66 "platform": "windows,linux",
67 "shortcut": "Ctrl+S" 67 "shortcut": "Ctrl+S"
68 }, 68 },
69 { 69 {
70 "platform": "mac", 70 "platform": "mac",
71 "shortcut": "Meta+S" 71 "shortcut": "Meta+S"
72 } 72 }
73 ] 73 ]
74 }, 74 },
75 { 75 {
76 "type": "@WebInspector.ActionDelegate", 76 "type": "@UI.ActionDelegate",
77 "category": "Timeline", 77 "category": "Timeline",
78 "actionId": "timeline.load-from-file", 78 "actionId": "timeline.load-from-file",
79 "contextTypes": ["WebInspector.TimelinePanel"], 79 "contextTypes": ["Timeline.TimelinePanel"],
80 "order": "10", 80 "order": "10",
81 "className": "WebInspector.TimelinePanel.ActionDelegate", 81 "className": "Timeline.TimelinePanel.ActionDelegate",
82 "title": "Load Timeline data\u2026", 82 "title": "Load Timeline data\u2026",
83 "bindings": [ 83 "bindings": [
84 { 84 {
85 "platform": "windows,linux", 85 "platform": "windows,linux",
86 "shortcut": "Ctrl+O" 86 "shortcut": "Ctrl+O"
87 }, 87 },
88 { 88 {
89 "platform": "mac", 89 "platform": "mac",
90 "shortcut": "Meta+O" 90 "shortcut": "Meta+O"
91 } 91 }
92 ] 92 ]
93 }, 93 },
94 { 94 {
95 "type": "@WebInspector.ActionDelegate", 95 "type": "@UI.ActionDelegate",
96 "actionId": "timeline.jump-to-previous-frame", 96 "actionId": "timeline.jump-to-previous-frame",
97 "contextTypes": ["WebInspector.TimelinePanel"], 97 "contextTypes": ["Timeline.TimelinePanel"],
98 "className": "WebInspector.TimelinePanel.ActionDelegate", 98 "className": "Timeline.TimelinePanel.ActionDelegate",
99 "bindings": [ 99 "bindings": [
100 { 100 {
101 "shortcut": "[" 101 "shortcut": "["
102 } 102 }
103 ] 103 ]
104 }, 104 },
105 { 105 {
106 "type": "@WebInspector.ActionDelegate", 106 "type": "@UI.ActionDelegate",
107 "actionId": "timeline.jump-to-next-frame", 107 "actionId": "timeline.jump-to-next-frame",
108 "contextTypes": ["WebInspector.TimelinePanel"], 108 "contextTypes": ["Timeline.TimelinePanel"],
109 "className": "WebInspector.TimelinePanel.ActionDelegate", 109 "className": "Timeline.TimelinePanel.ActionDelegate",
110 "bindings": [ 110 "bindings": [
111 { 111 {
112 "shortcut": "]" 112 "shortcut": "]"
113 } 113 }
114 ] 114 ]
115 } 115 }
116 ], 116 ],
117 "dependencies": [ 117 "dependencies": [
118 "components", 118 "components",
119 "components_lazy", 119 "components_lazy",
(...skipping 15 matching lines...) Expand all
135 "TimelinePanel.js" 135 "TimelinePanel.js"
136 ], 136 ],
137 "resources": [ 137 "resources": [
138 "invalidationsTree.css", 138 "invalidationsTree.css",
139 "timelineFlamechartPopover.css", 139 "timelineFlamechartPopover.css",
140 "timelinePanel.css", 140 "timelinePanel.css",
141 "timelinePaintProfiler.css", 141 "timelinePaintProfiler.css",
142 "timelineStatusDialog.css" 142 "timelineStatusDialog.css"
143 ] 143 ]
144 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698