| OLD | NEW |
| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 142 |
| 143 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); | 143 void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum
breakReason, PassRefPtr<JSONObject> data); |
| 144 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); | 144 void didInstallTimer(ExecutionContext*, int timerId, int timeout, bool singl
eShot); |
| 145 void didRemoveTimer(ExecutionContext*, int timerId); | 145 void didRemoveTimer(ExecutionContext*, int timerId); |
| 146 bool willFireTimer(ExecutionContext*, int timerId); | 146 bool willFireTimer(ExecutionContext*, int timerId); |
| 147 void didFireTimer(); | 147 void didFireTimer(); |
| 148 void didRequestAnimationFrame(Document*, int callbackId); | 148 void didRequestAnimationFrame(Document*, int callbackId); |
| 149 void didCancelAnimationFrame(Document*, int callbackId); | 149 void didCancelAnimationFrame(Document*, int callbackId); |
| 150 bool willFireAnimationFrame(Document*, int callbackId); | 150 bool willFireAnimationFrame(Document*, int callbackId); |
| 151 void didFireAnimationFrame(); | 151 void didFireAnimationFrame(); |
| 152 void didAddEventListener(EventTarget*, const AtomicString& eventType, EventL
istener*, bool useCapture); | |
| 153 void didRemoveEventListener(EventTarget*, const AtomicString& eventType, Eve
ntListener*, bool useCapture); | |
| 154 void didRemoveAllEventListeners(EventTarget*); | |
| 155 void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListe
ner*, bool useCapture); | 152 void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListe
ner*, bool useCapture); |
| 156 void didHandleEvent(); | 153 void didHandleEvent(); |
| 157 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); | 154 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); |
| 158 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); | 155 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); |
| 159 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); | 156 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); |
| 160 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); | 157 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); |
| 161 void didDeliverMutationRecords(); | 158 void didDeliverMutationRecords(); |
| 162 void didPostPromiseTask(ExecutionContext*, ExecutionContextTask*, bool isRes
olved); | 159 void didPostPromiseTask(ExecutionContext*, ExecutionContextTask*, bool isRes
olved); |
| 163 void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*); | 160 void willPerformPromiseTask(ExecutionContext*, ExecutionContextTask*); |
| 164 void didPerformPromiseTask(); | 161 void didPerformPromiseTask(); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 bool m_skipAllPauses; | 250 bool m_skipAllPauses; |
| 254 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 251 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 255 AsyncCallStackTracker m_asyncCallStackTracker; | 252 AsyncCallStackTracker m_asyncCallStackTracker; |
| 256 PromiseTracker m_promiseTracker; | 253 PromiseTracker m_promiseTracker; |
| 257 }; | 254 }; |
| 258 | 255 |
| 259 } // namespace WebCore | 256 } // namespace WebCore |
| 260 | 257 |
| 261 | 258 |
| 262 #endif // !defined(InspectorDebuggerAgent_h) | 259 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |