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

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: use WeakCallback 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 ebff07d322704352c13faf87ff0b162b7930b53d..d9fe98faac6c07ca9ebeb41a19842c1704891e5b 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*);
+
+ [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