Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: Source/core/inspector/InspectorDebuggerAgent.h

Issue 863953002: Oilpan: fix build after r188733. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 bool m_skipAllPauses; 283 bool m_skipAllPauses;
284 bool m_skipContentScripts; 284 bool m_skipContentScripts;
285 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; 285 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
286 unsigned m_cachedSkipStackGeneration; 286 unsigned m_cachedSkipStackGeneration;
287 OwnPtrWillBeMember<V8AsyncCallTracker> m_v8AsyncCallTracker; 287 OwnPtrWillBeMember<V8AsyncCallTracker> m_v8AsyncCallTracker;
288 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker; 288 OwnPtrWillBeMember<PromiseTracker> m_promiseTracker;
289 289
290 using AsyncOperationIdToAsyncCallChain = WillBeHeapHashMap<int, RefPtrWillBe Member<AsyncCallChain>>; 290 using AsyncOperationIdToAsyncCallChain = WillBeHeapHashMap<int, RefPtrWillBe Member<AsyncCallChain>>;
291 AsyncOperationIdToAsyncCallChain m_asyncOperations; 291 AsyncOperationIdToAsyncCallChain m_asyncOperations;
292 int m_lastAsyncOperationId; 292 int m_lastAsyncOperationId;
293 WillBeHeapHashSet<int> m_asyncOperationsForStepInto; 293 HashSet<int> m_asyncOperationsForStepInto;
294 unsigned m_maxAsyncCallStackDepth; 294 unsigned m_maxAsyncCallStackDepth;
295 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; 295 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain;
296 unsigned m_nestedAsyncCallCount; 296 unsigned m_nestedAsyncCallCount;
297 bool m_performingAsyncStepIn; 297 bool m_performingAsyncStepIn;
298 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT rackingListeners; 298 WillBeHeapVector<RawPtrWillBeMember<AsyncCallTrackingListener>> m_asyncCallT rackingListeners;
299 }; 299 };
300 300
301 } // namespace blink 301 } // namespace blink
302 302
303 303
304 #endif // InspectorDebuggerAgent_h 304 #endif // InspectorDebuggerAgent_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorDebuggerAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698