| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 288 |
| 289 int m_skippedStepFrameCount; | 289 int m_skippedStepFrameCount; |
| 290 int m_recursionLevelForStepOut; | 290 int m_recursionLevelForStepOut; |
| 291 int m_recursionLevelForStepFrame; | 291 int m_recursionLevelForStepFrame; |
| 292 bool m_skipAllPauses; | 292 bool m_skipAllPauses; |
| 293 bool m_skipContentScripts; | 293 bool m_skipContentScripts; |
| 294 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 294 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 295 unsigned m_cachedSkipStackGeneration; | 295 unsigned m_cachedSkipStackGeneration; |
| 296 OwnPtrWillBeMember<V8AsyncCallTracker> m_v8AsyncCallTracker; | 296 OwnPtrWillBeMember<V8AsyncCallTracker> m_v8AsyncCallTracker; |
| 297 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; | 297 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; |
| 298 WillBeHeapHashMap<String, String> m_editedScripts; | 298 HashMap<String, String> m_editedScripts; |
| 299 | 299 |
| 300 using AsyncOperationIdToAsyncCallChain = WillBeHeapHashMap<int, RefPtrWillBe
Member<AsyncCallChain>>; | 300 using AsyncOperationIdToAsyncCallChain = WillBeHeapHashMap<int, RefPtrWillBe
Member<AsyncCallChain>>; |
| 301 AsyncOperationIdToAsyncCallChain m_asyncOperations; | 301 AsyncOperationIdToAsyncCallChain m_asyncOperations; |
| 302 int m_lastAsyncOperationId; | 302 int m_lastAsyncOperationId; |
| 303 ListHashSet<int> m_asyncOperationNotifications; | 303 ListHashSet<int> m_asyncOperationNotifications; |
| 304 HashSet<int> m_asyncOperationBreakpoints; | 304 HashSet<int> m_asyncOperationBreakpoints; |
| 305 HashSet<int> m_pausingAsyncOperations; | 305 HashSet<int> m_pausingAsyncOperations; |
| 306 unsigned m_maxAsyncCallStackDepth; | 306 unsigned m_maxAsyncCallStackDepth; |
| 307 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; | 307 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; |
| 308 unsigned m_nestedAsyncCallCount; | 308 unsigned m_nestedAsyncCallCount; |
| 309 int m_currentAsyncOperationId; | 309 int m_currentAsyncOperationId; |
| 310 bool m_pendingTraceAsyncOperationCompleted; | 310 bool m_pendingTraceAsyncOperationCompleted; |
| 311 bool m_startingStepIntoAsync; | 311 bool m_startingStepIntoAsync; |
| 312 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; | 312 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT
rackingListeners; |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 } // namespace blink | 315 } // namespace blink |
| 316 | 316 |
| 317 | 317 |
| 318 #endif // InspectorDebuggerAgent_h | 318 #endif // InspectorDebuggerAgent_h |
| OLD | NEW |