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

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

Issue 332493002: DevTools: Support async call stacks for scripted animation events (like scroll). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/InspectorDOMDebuggerAgent.h
diff --git a/Source/core/inspector/InspectorDOMDebuggerAgent.h b/Source/core/inspector/InspectorDOMDebuggerAgent.h
index c6693b2e783eb3f78ec32bcc8143154ea359cc9b..08499866baac6d96dde260735e3ddc730e1ba402 100644
--- a/Source/core/inspector/InspectorDOMDebuggerAgent.h
+++ b/Source/core/inspector/InspectorDOMDebuggerAgent.h
@@ -43,6 +43,7 @@ namespace WebCore {
class Document;
class Element;
+class Event;
class EventListener;
class EventTarget;
class InspectorDOMAgent;
@@ -89,7 +90,7 @@ public:
void didRequestAnimationFrame(Document*, int callbackId);
void didCancelAnimationFrame(Document*, int callbackId);
void willFireAnimationFrame(Document*, int callbackId);
- void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListener*, bool useCapture);
+ void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
void didFireWebGLError(const String& errorName);
void didFireWebGLWarning();
void didFireWebGLErrorOrWarning(const String& message);

Powered by Google App Engine
This is Rietveld 408576698