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