| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 267 |
| 268 int m_skippedStepFrameCount; | 268 int m_skippedStepFrameCount; |
| 269 int m_recursionLevelForStepOut; | 269 int m_recursionLevelForStepOut; |
| 270 int m_recursionLevelForStepFrame; | 270 int m_recursionLevelForStepFrame; |
| 271 bool m_skipAllPauses; | 271 bool m_skipAllPauses; |
| 272 bool m_skipContentScripts; | 272 bool m_skipContentScripts; |
| 273 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; | 273 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
| 274 unsigned m_cachedSkipStackGeneration; | 274 unsigned m_cachedSkipStackGeneration; |
| 275 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; | 275 OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
| 276 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; | 276 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; |
| 277 HashSet<RefPtr<AsyncCallStackTracker::AsyncCallChain> > m_asyncOperationsFor
StepInto; | 277 WillBeHeapHashSet<RefPtrWillBeMember<AsyncCallStackTracker::AsyncCallChain>
> m_asyncOperationsForStepInto; |
| 278 }; | 278 }; |
| 279 | 279 |
| 280 } // namespace blink | 280 } // namespace blink |
| 281 | 281 |
| 282 | 282 |
| 283 #endif // !defined(InspectorDebuggerAgent_h) | 283 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |