| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal
lFrames(); | 207 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCal
lFrames(); |
| 208 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); | 208 PassRefPtr<TypeBuilder::Debugger::StackTrace> currentAsyncStackTrace(); |
| 209 | 209 |
| 210 void changeJavaScriptRecursionLevel(int step); | 210 void changeJavaScriptRecursionLevel(int step); |
| 211 | 211 |
| 212 void didParseSource(const String& scriptId, const Script&, CompileResult) fi
nal; | 212 void didParseSource(const String& scriptId, const Script&, CompileResult) fi
nal; |
| 213 bool v8AsyncTaskEventsEnabled() const final; | 213 bool v8AsyncTaskEventsEnabled() const final; |
| 214 void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType,
const String& eventName, int id) final; | 214 void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType,
const String& eventName, int id) final; |
| 215 bool v8PromiseEventsEnabled() const final; | 215 bool v8PromiseEventsEnabled() const final; |
| 216 void didReceiveV8PromiseEvent(ScriptState*, v8::Handle<v8::Object> promise,
v8::Handle<v8::Value> parentPromise, int status) final; | 216 void didReceiveV8PromiseEvent(ScriptState*, v8::Local<v8::Object> promise, v
8::Local<v8::Value> parentPromise, int status) final; |
| 217 | 217 |
| 218 void setPauseOnExceptionsImpl(ErrorString*, int); | 218 void setPauseOnExceptionsImpl(ErrorString*, int); |
| 219 | 219 |
| 220 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; | 220 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String&
breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource)
; |
| 221 void removeBreakpoint(const String& breakpointId); | 221 void removeBreakpoint(const String& breakpointId); |
| 222 void clear(); | 222 void clear(); |
| 223 void clearStepIntoAsync(); | 223 void clearStepIntoAsync(); |
| 224 bool assertPaused(ErrorString*); | 224 bool assertPaused(ErrorString*); |
| 225 void clearBreakDetails(); | 225 void clearBreakDetails(); |
| 226 | 226 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 unsigned m_cachedSkipStackGeneration; | 272 unsigned m_cachedSkipStackGeneration; |
| 273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; | 273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
| 274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; | 274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; |
| 275 HashSet<int> m_asyncOperationIdsForStepInto; | 275 HashSet<int> m_asyncOperationIdsForStepInto; |
| 276 }; | 276 }; |
| 277 | 277 |
| 278 } // namespace blink | 278 } // namespace blink |
| 279 | 279 |
| 280 | 280 |
| 281 #endif // !defined(InspectorDebuggerAgent_h) | 281 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |