| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 61 |
| 62 typedef String ErrorString; | 62 typedef String ErrorString; |
| 63 | 63 |
| 64 class InspectorDebuggerAgent | 64 class InspectorDebuggerAgent |
| 65 : public InspectorBaseAgent<InspectorDebuggerAgent> | 65 : public InspectorBaseAgent<InspectorDebuggerAgent> |
| 66 , public ScriptDebugListener | 66 , public ScriptDebugListener |
| 67 , public AsyncCallStackTracker::Listener | 67 , public AsyncCallStackTracker::Listener |
| 68 , public InspectorBackendDispatcher::DebuggerCommandHandler { | 68 , public InspectorBackendDispatcher::DebuggerCommandHandler { |
| 69 WTF_MAKE_NONCOPYABLE(InspectorDebuggerAgent); | 69 WTF_MAKE_NONCOPYABLE(InspectorDebuggerAgent); |
| 70 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 70 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 71 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(InspectorDebuggerAgent); |
| 71 public: | 72 public: |
| 72 enum BreakpointSource { | 73 enum BreakpointSource { |
| 73 UserBreakpointSource, | 74 UserBreakpointSource, |
| 74 DebugCommandBreakpointSource, | 75 DebugCommandBreakpointSource, |
| 75 MonitorCommandBreakpointSource | 76 MonitorCommandBreakpointSource |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 static const char backtraceObjectGroup[]; | 79 static const char backtraceObjectGroup[]; |
| 79 | 80 |
| 80 virtual ~InspectorDebuggerAgent(); | 81 virtual ~InspectorDebuggerAgent(); |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 unsigned m_cachedSkipStackGeneration; | 272 unsigned m_cachedSkipStackGeneration; |
| 272 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; | 273 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
| 273 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; | 274 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; |
| 274 HashSet<int> m_asyncOperationIdsForStepInto; | 275 HashSet<int> m_asyncOperationIdsForStepInto; |
| 275 }; | 276 }; |
| 276 | 277 |
| 277 } // namespace blink | 278 } // namespace blink |
| 278 | 279 |
| 279 | 280 |
| 280 #endif // !defined(InspectorDebuggerAgent_h) | 281 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |