| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 class AsyncCallChain; | 53 class AsyncCallChain; |
| 54 class AsyncCallStack; | 54 class AsyncCallStack; |
| 55 class ConsoleMessage; | 55 class ConsoleMessage; |
| 56 class DevToolsFunctionInfo; | 56 class DevToolsFunctionInfo; |
| 57 class InjectedScript; | 57 class InjectedScript; |
| 58 class InjectedScriptManager; | 58 class InjectedScriptManager; |
| 59 class JavaScriptCallFrame; | 59 class JavaScriptCallFrame; |
| 60 class JSONObject; | 60 class JSONObject; |
| 61 class ScriptAsyncCallStack; | 61 class ScriptAsyncCallStack; |
| 62 class ScriptRegexp; | 62 class ScriptRegexp; |
| 63 class ScriptSourceCode; | |
| 64 class V8AsyncCallTracker; | 63 class V8AsyncCallTracker; |
| 65 class V8Debugger; | 64 class V8Debugger; |
| 66 | 65 |
| 67 typedef String ErrorString; | 66 typedef String ErrorString; |
| 68 | 67 |
| 69 class CORE_EXPORT InspectorDebuggerAgent | 68 class CORE_EXPORT InspectorDebuggerAgent |
| 70 : public InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debug
ger> | 69 : public InspectorBaseAgent<InspectorDebuggerAgent, InspectorFrontend::Debug
ger> |
| 71 , public ScriptDebugListener | 70 , public ScriptDebugListener |
| 72 , public InspectorBackendDispatcher::DebuggerCommandHandler | 71 , public InspectorBackendDispatcher::DebuggerCommandHandler |
| 73 , public PromiseTracker::Listener { | 72 , public PromiseTracker::Listener { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 bool m_pendingTraceAsyncOperationCompleted; | 307 bool m_pendingTraceAsyncOperationCompleted; |
| 309 bool m_startingStepIntoAsync; | 308 bool m_startingStepIntoAsync; |
| 310 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; | 309 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; |
| 311 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts; | 310 V8GlobalValueMap<String, v8::Script, v8::kNotWeak> m_compiledScripts; |
| 312 }; | 311 }; |
| 313 | 312 |
| 314 } // namespace blink | 313 } // namespace blink |
| 315 | 314 |
| 316 | 315 |
| 317 #endif // InspectorDebuggerAgent_h | 316 #endif // InspectorDebuggerAgent_h |
| OLD | NEW |