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

Unified Diff: Source/core/inspector/AsyncCallTracker.h

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/AsyncCallTracker.h
diff --git a/Source/core/inspector/AsyncCallTracker.h b/Source/core/inspector/AsyncCallTracker.h
index a28f69bcb20e4811ad39428af276a4f0bfd08b94..453dfbedb1ea11a523e41d11d080293e51f2f41b 100644
--- a/Source/core/inspector/AsyncCallTracker.h
+++ b/Source/core/inspector/AsyncCallTracker.h
@@ -50,6 +50,7 @@ class HTTPHeaderMap;
class InspectorDebuggerAgent;
class KURL;
class MutationObserver;
+class PerformanceObserver;
class ThreadableLoaderClient;
class XMLHttpRequest;
@@ -87,6 +88,11 @@ public:
void willDeliverMutationRecords(ExecutionContext*, MutationObserver*);
void didDeliverMutationRecords() { didFireAsyncCall(); }
+ void didEnqueuePerformanceObserverEntries(ExecutionContext*, PerformanceObserver*);
yurys 2015/08/20 15:28:39 This will need a layout test. See LayoutTests/insp
+ void didClearAllPerformanceObservations(ExecutionContext*, PerformanceObserver*);
+ void willDeliverPerformanceObservations(ExecutionContext*, PerformanceObserver*);
+ void didDeliverPerformanceObservations() { didFireAsyncCall(); };
+
void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*);
void didKillAllExecutionContextTasks(ExecutionContext*);
void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask*);

Powered by Google App Engine
This is Rietveld 408576698