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

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: Sync with latest spec draft (DOMString -> PerformanceEntryType and new PerformanceObserver -> windo… Created 5 years, 5 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 b070934c399e06af54180f49748e7bd24ff2566b..084efaaa76248f67e288c8007730ede6fb2e2971 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