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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 1198863006: First version of PerformanceObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add LayoutTest Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
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]

Powered by Google App Engine
This is Rietveld 408576698