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

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

Issue 967313003: Oilpan: fix build after r191128 (557025ef). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.h ('k') | Source/core/inspector/InspectorPageAgent.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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.h ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698