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

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

Issue 383363002: DevTools: Fix async stacks instrumentation for XHRs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 void didFireTimer(); 149 void didFireTimer();
150 void didRequestAnimationFrame(Document*, int callbackId); 150 void didRequestAnimationFrame(Document*, int callbackId);
151 void didCancelAnimationFrame(Document*, int callbackId); 151 void didCancelAnimationFrame(Document*, int callbackId);
152 bool willFireAnimationFrame(Document*, int callbackId); 152 bool willFireAnimationFrame(Document*, int callbackId);
153 void didFireAnimationFrame(); 153 void didFireAnimationFrame();
154 void didEnqueueEvent(EventTarget*, Event*); 154 void didEnqueueEvent(EventTarget*, Event*);
155 void didRemoveEvent(EventTarget*, Event*); 155 void didRemoveEvent(EventTarget*, Event*);
156 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); 156 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture);
157 void didHandleEvent(); 157 void didHandleEvent();
158 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials); 158 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers , bool includeCrendentials);
159 void didDispatchXHRLoadendEvent(XMLHttpRequest*);
159 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); 160 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*);
160 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); 161 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*);
161 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); 162 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*);
162 void didDeliverMutationRecords(); 163 void didDeliverMutationRecords();
163 void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*); 164 void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*);
164 void didKillAllExecutionContextTasks(ExecutionContext*); 165 void didKillAllExecutionContextTasks(ExecutionContext*);
165 void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask *); 166 void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask *);
166 void didPerformExecutionContextTask(); 167 void didPerformExecutionContextTask();
167 bool canBreakProgram(); 168 bool canBreakProgram();
168 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data); 169 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas sRefPtr<JSONObject> data);
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 int m_minFrameCountForSkip; 256 int m_minFrameCountForSkip;
256 bool m_skipAllPauses; 257 bool m_skipAllPauses;
257 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 258 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
258 AsyncCallStackTracker m_asyncCallStackTracker; 259 AsyncCallStackTracker m_asyncCallStackTracker;
259 }; 260 };
260 261
261 } // namespace WebCore 262 } // namespace WebCore
262 263
263 264
264 #endif // !defined(InspectorDebuggerAgent_h) 265 #endif // !defined(InspectorDebuggerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698