| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); | 160 void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicStrin
g& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers
, bool includeCrendentials); |
| 161 void didDispatchXHRLoadendEvent(XMLHttpRequest*); | 161 void didDispatchXHRLoadendEvent(XMLHttpRequest*); |
| 162 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); | 162 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); |
| 163 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); | 163 void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); |
| 164 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); | 164 void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); |
| 165 void didDeliverMutationRecords(); | 165 void didDeliverMutationRecords(); |
| 166 void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*); | 166 void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*); |
| 167 void didKillAllExecutionContextTasks(ExecutionContext*); | 167 void didKillAllExecutionContextTasks(ExecutionContext*); |
| 168 void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask
*); | 168 void willPerformExecutionContextTask(ExecutionContext*, ExecutionContextTask
*); |
| 169 void didPerformExecutionContextTask(); | 169 void didPerformExecutionContextTask(); |
| 170 int traceAsyncOperationStarting(ExecutionContext*, const String& operationNa
me); | 170 int traceAsyncOperationStarting(ExecutionContext*, const String& operationNa
me, int prevOperationId = 0); |
| 171 void traceAsyncOperationCompleted(ExecutionContext*, int operationId); | 171 void traceAsyncOperationCompleted(ExecutionContext*, int operationId); |
| 172 void traceAsyncOperationCompletedCallbackStarting(ExecutionContext*, int ope
rationId); | 172 void traceAsyncOperationCompletedCallbackStarting(ExecutionContext*, int ope
rationId); |
| 173 void traceAsyncCallbackStarting(ExecutionContext*, int operationId); | 173 void traceAsyncCallbackStarting(ExecutionContext*, int operationId); |
| 174 void traceAsyncCallbackCompleted(); | 174 void traceAsyncCallbackCompleted(); |
| 175 bool canBreakProgram(); | 175 bool canBreakProgram(); |
| 176 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas
sRefPtr<JSONObject> data); | 176 void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, Pas
sRefPtr<JSONObject> data); |
| 177 void scriptExecutionBlockedByCSP(const String& directiveText); | 177 void scriptExecutionBlockedByCSP(const String& directiveText); |
| 178 | 178 |
| 179 class Listener : public WillBeGarbageCollectedMixin { | 179 class Listener : public WillBeGarbageCollectedMixin { |
| 180 public: | 180 public: |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 int m_minFrameCountForSkip; | 262 int m_minFrameCountForSkip; |
| 263 bool m_skipAllPauses; | 263 bool m_skipAllPauses; |
| 264 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 264 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 265 AsyncCallStackTracker m_asyncCallStackTracker; | 265 AsyncCallStackTracker m_asyncCallStackTracker; |
| 266 }; | 266 }; |
| 267 | 267 |
| 268 } // namespace blink | 268 } // namespace blink |
| 269 | 269 |
| 270 | 270 |
| 271 #endif // !defined(InspectorDebuggerAgent_h) | 271 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |