| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 didEnqueueEvent(EventTarget*, Event*); | 152 void didEnqueueEvent(EventTarget*, Event*); |
| 153 void didDispatchEvent(EventTarget*, Event*); | 153 void didRemoveEvent(EventTarget*, Event*); |
| 154 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); | 154 void willHandleEvent(EventTarget*, Event*, EventListener*, bool useCapture); |
| 155 void didHandleEvent(); | 155 void didHandleEvent(); |
| 156 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); | 156 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); |
| 157 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); | 157 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); |
| 158 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); | 158 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); |
| 159 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); | 159 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); |
| 160 void didDeliverMutationRecords(); | 160 void didDeliverMutationRecords(); |
| 161 bool canBreakProgram(); | 161 bool canBreakProgram(); |
| 162 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas
sRefPtr<JSONObject> data); | 162 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas
sRefPtr<JSONObject> data); |
| 163 void scriptExecutionBlockedByCSP(const String& directiveText); | 163 void scriptExecutionBlockedByCSP(const String& directiveText); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 int m_minFrameCountForSkip; | 246 int m_minFrameCountForSkip; |
| 247 bool m_skipAllPauses; | 247 bool m_skipAllPauses; |
| 248 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 248 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 249 AsyncCallStackTracker m_asyncCallStackTracker; | 249 AsyncCallStackTracker m_asyncCallStackTracker; |
| 250 }; | 250 }; |
| 251 | 251 |
| 252 } // namespace WebCore | 252 } // namespace WebCore |
| 253 | 253 |
| 254 | 254 |
| 255 #endif // !defined(InspectorDebuggerAgent_h) | 255 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |