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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 25 matching lines...) Expand all
36 #include "core/inspector/InspectorDOMAgent.h" 36 #include "core/inspector/InspectorDOMAgent.h"
37 #include "core/inspector/InspectorDebuggerAgent.h" 37 #include "core/inspector/InspectorDebuggerAgent.h"
38 #include "wtf/HashMap.h" 38 #include "wtf/HashMap.h"
39 #include "wtf/PassOwnPtr.h" 39 #include "wtf/PassOwnPtr.h"
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 41
42 namespace WebCore { 42 namespace WebCore {
43 43
44 class Document; 44 class Document;
45 class Element; 45 class Element;
46 class Event;
46 class EventListener; 47 class EventListener;
47 class EventTarget; 48 class EventTarget;
48 class InspectorDOMAgent; 49 class InspectorDOMAgent;
49 class InspectorDebuggerAgent; 50 class InspectorDebuggerAgent;
50 class InspectorFrontend; 51 class InspectorFrontend;
51 class InstrumentingAgents; 52 class InstrumentingAgents;
52 class JSONObject; 53 class JSONObject;
53 class Node; 54 class Node;
54 55
55 typedef String ErrorString; 56 typedef String ErrorString;
(...skipping 26 matching lines...) Expand all
82 void willRemoveDOMNode(Node*); 83 void willRemoveDOMNode(Node*);
83 void didRemoveDOMNode(Node*); 84 void didRemoveDOMNode(Node*);
84 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&); 85 void willModifyDOMAttr(Element*, const AtomicString&, const AtomicString&);
85 void willSendXMLHttpRequest(const String& url); 86 void willSendXMLHttpRequest(const String& url);
86 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot); 87 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot);
87 void didRemoveTimer(ExecutionContext*, int timerId); 88 void didRemoveTimer(ExecutionContext*, int timerId);
88 void willFireTimer(ExecutionContext*, int timerId); 89 void willFireTimer(ExecutionContext*, int timerId);
89 void didRequestAnimationFrame(Document*, int callbackId); 90 void didRequestAnimationFrame(Document*, int callbackId);
90 void didCancelAnimationFrame(Document*, int callbackId); 91 void didCancelAnimationFrame(Document*, int callbackId);
91 void willFireAnimationFrame(Document*, int callbackId); 92 void willFireAnimationFrame(Document*, int callbackId);
92 void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListe ner*, bool useCapture); 93 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
93 void didFireWebGLError(const String& errorName); 94 void didFireWebGLError(const String& errorName);
94 void didFireWebGLWarning(); 95 void didFireWebGLWarning();
95 void didFireWebGLErrorOrWarning(const String& message); 96 void didFireWebGLErrorOrWarning(const String& message);
96 void willExecuteCustomElementCallback(Element*); 97 void willExecuteCustomElementCallback(Element*);
97 98
98 void didProcessTask(); 99 void didProcessTask();
99 100
100 virtual void clearFrontend() OVERRIDE; 101 virtual void clearFrontend() OVERRIDE;
101 virtual void discardAgent() OVERRIDE; 102 virtual void discardAgent() OVERRIDE;
102 103
(...skipping 25 matching lines...) Expand all
128 InspectorDOMAgent* m_domAgent; 129 InspectorDOMAgent* m_domAgent;
129 InspectorDebuggerAgent* m_debuggerAgent; 130 InspectorDebuggerAgent* m_debuggerAgent;
130 HashMap<Node*, uint32_t> m_domBreakpoints; 131 HashMap<Node*, uint32_t> m_domBreakpoints;
131 bool m_pauseInNextEventListener; 132 bool m_pauseInNextEventListener;
132 }; 133 };
133 134
134 } // namespace WebCore 135 } // namespace WebCore
135 136
136 137
137 #endif // !defined(InspectorDOMDebuggerAgent_h) 138 #endif // !defined(InspectorDOMDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698