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

Side by Side Diff: third_party/WebKit/Source/core/probe/CoreProbes.json5

Issue 2793423002: [instrumentation] Move "include" section from PIDL to JSON5 config (Closed)
Patch Set: Created 3 years, 8 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 settings: { 2 settings: {
3 export_symbol: "CORE_EXPORT", 3 export_symbol: "CORE_EXPORT",
4 default_include: "core/inspector", 4 include_path: "core/inspector",
5 probes_header: "core/probe/CoreProbes.h" 5 includes: [
6 "core/animation/Animation.h",
7 "core/dom/CharacterData.h",
8 "core/dom/PseudoElement.h",
9 "core/html/HTMLSlotElement.h",
10 "core/probe/CoreProbes.h",
11 ],
6 }, 12 },
7 observers: { 13 observers: {
8 Animation: { 14 Animation: {
9 probes: [ 15 probes: [
10 "animationPlayStateChanged", 16 "animationPlayStateChanged",
11 "didClearDocumentOfWindowObject", 17 "didClearDocumentOfWindowObject",
12 "didCreateAnimation", 18 "didCreateAnimation",
13 ] 19 ]
14 }, 20 },
15 ApplicationCache: { 21 ApplicationCache: {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 "frameStoppedLoading", 139 "frameStoppedLoading",
134 "loadEventFired", 140 "loadEventFired",
135 "RecalculateStyle", 141 "RecalculateStyle",
136 "UpdateLayout", 142 "UpdateLayout",
137 "willRunJavaScriptDialog", 143 "willRunJavaScriptDialog",
138 "windowCreated", 144 "windowCreated",
139 ] 145 ]
140 }, 146 },
141 Performance: { 147 Performance: {
142 class: "PerformanceMonitor", 148 class: "PerformanceMonitor",
143 include: "core/frame", 149 include_path: "core/frame",
144 probes: [ 150 probes: [
145 "CallFunction", 151 "CallFunction",
146 "documentWriteFetchScript", 152 "documentWriteFetchScript",
147 "ExecuteScript", 153 "ExecuteScript",
148 "RecalculateStyle", 154 "RecalculateStyle",
149 "UpdateLayout", 155 "UpdateLayout",
150 "UserCallback", 156 "UserCallback",
151 ] 157 ]
152 }, 158 },
153 TraceEvents: { 159 TraceEvents: {
(...skipping 15 matching lines...) Expand all
169 ] 175 ]
170 }, 176 },
171 Worker: { 177 Worker: {
172 probes: [ 178 probes: [
173 "didStartWorker", 179 "didStartWorker",
174 "workerTerminated", 180 "workerTerminated",
175 ] 181 ]
176 }, 182 },
177 } 183 }
178 } 184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698