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

Side by Side Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 297823003: DevTools: Remove async call stacks support for EventTarget.addEventListener. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010-2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010-2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data); 142 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data);
143 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot); 143 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl eShot);
144 void didRemoveTimer(ExecutionContext*, int timerId); 144 void didRemoveTimer(ExecutionContext*, int timerId);
145 bool willFireTimer(ExecutionContext*, int timerId); 145 bool willFireTimer(ExecutionContext*, int timerId);
146 void didFireTimer(); 146 void didFireTimer();
147 void didRequestAnimationFrame(Document*, int callbackId); 147 void didRequestAnimationFrame(Document*, int callbackId);
148 void didCancelAnimationFrame(Document*, int callbackId); 148 void didCancelAnimationFrame(Document*, int callbackId);
149 bool willFireAnimationFrame(Document*, int callbackId); 149 bool willFireAnimationFrame(Document*, int callbackId);
150 void didFireAnimationFrame(); 150 void didFireAnimationFrame();
151 void didAddEventListener(EventTarget*, const AtomicString& eventType, EventL istener*, bool useCapture);
152 void didRemoveEventListener(EventTarget*, const AtomicString& eventType, Eve ntListener*, bool useCapture);
153 void didRemoveAllEventListeners(EventTarget*);
154 void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListe ner*, bool useCapture); 151 void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListe ner*, bool useCapture);
155 void didHandleEvent(); 152 void didHandleEvent();
156 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials); 153 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials);
157 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); 154 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*);
158 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); 155 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*);
159 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); 156 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*);
160 void didDeliverMutationRecords(); 157 void didDeliverMutationRecords();
161 bool canBreakProgram(); 158 bool canBreakProgram();
162 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data); 159 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data);
163 void scriptExecutionBlockedByCSP(const String& directiveText); 160 void scriptExecutionBlockedByCSP(const String& directiveText);
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 int m_skipStepInCount; 241 int m_skipStepInCount;
245 bool m_skipAllPauses; 242 bool m_skipAllPauses;
246 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 243 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
247 AsyncCallStackTracker m_asyncCallStackTracker; 244 AsyncCallStackTracker m_asyncCallStackTracker;
248 }; 245 };
249 246
250 } // namespace WebCore 247 } // namespace WebCore
251 248
252 249
253 #endif // !defined(InspectorDebuggerAgent_h) 250 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/AsyncCallStackTracker.cpp ('k') | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698