| OLD | NEW |
| 1 { | 1 { |
| 2 settings: { | 2 settings: { |
| 3 export_symbol: "CORE_EXPORT", | 3 export_symbol: "CORE_EXPORT", |
| 4 include_path: "core/inspector", | 4 include_path: "core/inspector", |
| 5 includes: [ | 5 includes: [ |
| 6 "core/probe/CoreProbes.h", | 6 "core/probe/CoreProbes.h", |
| 7 ], | 7 ], |
| 8 }, | 8 }, |
| 9 observers: { | 9 observers: { |
| 10 Animation: { | 10 Animation: { |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 Performance: { | 146 Performance: { |
| 147 class: "PerformanceMonitor", | 147 class: "PerformanceMonitor", |
| 148 include_path: "core/frame", | 148 include_path: "core/frame", |
| 149 probes: [ | 149 probes: [ |
| 150 "CallFunction", | 150 "CallFunction", |
| 151 "documentWriteFetchScript", | 151 "documentWriteFetchScript", |
| 152 "ExecuteScript", | 152 "ExecuteScript", |
| 153 "RecalculateStyle", | 153 "RecalculateStyle", |
| 154 "UpdateLayout", | 154 "UpdateLayout", |
| 155 "UserCallback", | 155 "UserCallback", |
| 156 "V8Compile", |
| 156 ] | 157 ] |
| 157 }, | 158 }, |
| 158 TraceEvents: { | 159 TraceEvents: { |
| 159 class: "InspectorTraceEvents", | 160 class: "InspectorTraceEvents", |
| 160 probes: [ | 161 probes: [ |
| 161 "CallFunction", | 162 "CallFunction", |
| 162 "didFailLoading", | 163 "didFailLoading", |
| 163 "didFinishLoading", | 164 "didFinishLoading", |
| 164 "didReceiveData", | 165 "didReceiveData", |
| 165 "didReceiveResourceResponse", | 166 "didReceiveResourceResponse", |
| 166 "ParseHTML", | 167 "ParseHTML", |
| 167 "willSendRequest", | 168 "willSendRequest", |
| 168 ] | 169 ] |
| 169 }, | 170 }, |
| 170 Tracing: { | 171 Tracing: { |
| 171 probes: [ | 172 probes: [ |
| 172 "frameStartedLoading", | 173 "frameStartedLoading", |
| 173 "frameStoppedLoading", | 174 "frameStoppedLoading", |
| 174 ] | 175 ] |
| 175 }, | 176 }, |
| 176 Worker: { | 177 Worker: { |
| 177 probes: [ | 178 probes: [ |
| 178 "didStartWorker", | 179 "didStartWorker", |
| 179 "shouldWaitForDebuggerOnWorkerStart", | 180 "shouldWaitForDebuggerOnWorkerStart", |
| 180 "workerTerminated", | 181 "workerTerminated", |
| 181 ] | 182 ] |
| 182 }, | 183 }, |
| 183 } | 184 } |
| 184 } | 185 } |
| OLD | NEW |