| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 void removeBreakpoint(const String& breakpointId); | 241 void removeBreakpoint(const String& breakpointId); |
| 242 void clear(); | 242 void clear(); |
| 243 void clearStepIntoAsync(); | 243 void clearStepIntoAsync(); |
| 244 bool assertPaused(ErrorString*); | 244 bool assertPaused(ErrorString*); |
| 245 void clearBreakDetails(); | 245 void clearBreakDetails(); |
| 246 | 246 |
| 247 String sourceMapURLForScript(const Script&, CompileResult); | 247 String sourceMapURLForScript(const Script&, CompileResult); |
| 248 | 248 |
| 249 bool isCallStackEmptyOrBlackboxed(); | 249 bool isCallStackEmptyOrBlackboxed(); |
| 250 bool isTopCallFrameBlackboxed(); | 250 bool isTopCallFrameBlackboxed(); |
| 251 bool isCallFrameWithUnknownScriptOrBlackboxed(PassRefPtrWillBeRawPtr<JavaScr
iptCallFrame>); | 251 bool isCallFrameWithUnknownScriptOrBlackboxed(PassRefPtr<JavaScriptCallFrame
>); |
| 252 PromiseTracker& promiseTracker() const { return *m_promiseTracker; } | 252 PromiseTracker& promiseTracker() const { return *m_promiseTracker; } |
| 253 | 253 |
| 254 void internalSetAsyncCallStackDepth(int); | 254 void internalSetAsyncCallStackDepth(int); |
| 255 void increaseCachedSkipStackGeneration(); | 255 void increaseCachedSkipStackGeneration(); |
| 256 PassRefPtr<TypeBuilder::Debugger::ExceptionDetails> createExceptionDetails(v
8::Isolate*, v8::Local<v8::Message>); | 256 PassRefPtr<TypeBuilder::Debugger::ExceptionDetails> createExceptionDetails(v
8::Isolate*, v8::Local<v8::Message>); |
| 257 | 257 |
| 258 typedef HashMap<String, Script> ScriptsMap; | 258 typedef HashMap<String, Script> ScriptsMap; |
| 259 typedef HashMap<String, Vector<String>> BreakpointIdToDebuggerBreakpointIdsM
ap; | 259 typedef HashMap<String, Vector<String>> BreakpointIdToDebuggerBreakpointIdsM
ap; |
| 260 typedef HashMap<String, std::pair<String, BreakpointSource>> DebugServerBrea
kpointToBreakpointIdAndSourceMap; | 260 typedef HashMap<String, std::pair<String, BreakpointSource>> DebugServerBrea
kpointToBreakpointIdAndSourceMap; |
| 261 | 261 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 bool m_pendingTraceAsyncOperationCompleted; | 307 bool m_pendingTraceAsyncOperationCompleted; |
| 308 bool m_startingStepIntoAsync; | 308 bool m_startingStepIntoAsync; |
| 309 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; | 309 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; |
| 310 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts; | 310 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts; |
| 311 }; | 311 }; |
| 312 | 312 |
| 313 } // namespace blink | 313 } // namespace blink |
| 314 | 314 |
| 315 | 315 |
| 316 #endif // InspectorDebuggerAgent_h | 316 #endif // InspectorDebuggerAgent_h |
| OLD | NEW |