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

Unified Diff: Source/core/inspector/InspectorDebuggerAgent.cpp

Issue 309453003: Merge 174627 "DevTools: Remove async call stacks support for Eve..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1985/
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | Source/core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDebuggerAgent.cpp
===================================================================
--- Source/core/inspector/InspectorDebuggerAgent.cpp (revision 175041)
+++ Source/core/inspector/InspectorDebuggerAgent.cpp (working copy)
@@ -705,24 +705,6 @@
m_asyncCallStackTracker.didFireAsyncCall();
}
-void InspectorDebuggerAgent::didAddEventListener(EventTarget* eventTarget, const AtomicString& eventType, EventListener* listener, bool useCapture)
-{
- if (m_asyncCallStackTracker.isEnabled())
- m_asyncCallStackTracker.didAddEventListener(eventTarget, eventType, listener, useCapture, scriptDebugServer().currentCallFramesForAsyncStack());
-}
-
-void InspectorDebuggerAgent::didRemoveEventListener(EventTarget* eventTarget, const AtomicString& eventType, EventListener* listener, bool useCapture)
-{
- if (m_asyncCallStackTracker.isEnabled())
- m_asyncCallStackTracker.didRemoveEventListener(eventTarget, eventType, listener, useCapture);
-}
-
-void InspectorDebuggerAgent::didRemoveAllEventListeners(EventTarget* eventTarget)
-{
- if (m_asyncCallStackTracker.isEnabled())
- m_asyncCallStackTracker.didRemoveAllEventListeners(eventTarget);
-}
-
void InspectorDebuggerAgent::willHandleEvent(EventTarget* eventTarget, const AtomicString& eventType, EventListener* listener, bool useCapture)
{
if (m_asyncCallStackTracker.isEnabled())
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | Source/core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698