| Index: Source/core/inspector/InspectorDebuggerAgent.h
|
| diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
|
| index 7d6ea84d71485991635a1a64f4c325c5e485117b..e8d9cbb330ba624613b3acc1da1236699f23a2a9 100644
|
| --- a/Source/core/inspector/InspectorDebuggerAgent.h
|
| +++ b/Source/core/inspector/InspectorDebuggerAgent.h
|
| @@ -48,6 +48,7 @@
|
| namespace WebCore {
|
|
|
| class Document;
|
| +class Event;
|
| class EventListener;
|
| class EventTarget;
|
| class FormData;
|
| @@ -148,7 +149,9 @@ public:
|
| void didCancelAnimationFrame(Document*, int callbackId);
|
| bool willFireAnimationFrame(Document*, int callbackId);
|
| void didFireAnimationFrame();
|
| - void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListener*, bool useCapture);
|
| + void didEnqueueEvent(EventTarget*, Event*);
|
| + void didDispatchEvent(EventTarget*, Event*);
|
| + void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
|
| void didHandleEvent();
|
| void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicString& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers, bool includeCrendentials);
|
| void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*);
|
|
|