Chromium Code Reviews| Index: Source/core/inspector/InspectorInstrumentation.idl |
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl |
| index ba362489f3f39754c50158dbd975050bab993d02..accb98d821090ce9329eefdc508f5bf79b063cdd 100644 |
| --- a/Source/core/inspector/InspectorInstrumentation.idl |
| +++ b/Source/core/inspector/InspectorInstrumentation.idl |
| @@ -168,6 +168,18 @@ interface InspectorInstrumentation { |
| void didDeliverMutationRecords(ExecutionContext*); |
| [AsyncCallTracker, Inline=FastReturn] |
| + void didEnqueuePerformanceObserverEntries([Keep] ExecutionContext*, PerformanceObserver*); |
|
yurys
2015/08/26 19:17:05
You don't need all these changes. Use generic meth
MikeB
2015/08/27 18:02:49
Done.
|
| + |
| + [AsyncCallTracker, Inline=FastReturn] |
| + void didClearAllPerformanceObservations([Keep] ExecutionContext*, PerformanceObserver*); |
| + |
| + [AsyncCallTracker, Inline=FastReturn] |
| + void willDeliverPerformanceObservations([Keep] ExecutionContext*, PerformanceObserver*); |
| + |
| + [AsyncCallTracker, Inline=FastReturn] |
| + void didDeliverPerformanceObservations(ExecutionContext*); |
| + |
| + [AsyncCallTracker, Inline=FastReturn] |
| void didPostExecutionContextTask([Keep] ExecutionContext*, ExecutionContextTask*); |
| [AsyncCallTracker, Inline=FastReturn] |