| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |