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

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

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 | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | no next file » | 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) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 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 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 m_frontend->globalObjectCleared(); 1540 m_frontend->globalObjectCleared();
1541 } 1541 }
1542 1542
1543 void InspectorDebuggerAgent::trace(Visitor* visitor) 1543 void InspectorDebuggerAgent::trace(Visitor* visitor)
1544 { 1544 {
1545 #if ENABLE(OILPAN) 1545 #if ENABLE(OILPAN)
1546 visitor->trace(m_injectedScriptManager); 1546 visitor->trace(m_injectedScriptManager);
1547 visitor->trace(m_listener); 1547 visitor->trace(m_listener);
1548 visitor->trace(m_v8AsyncCallTracker); 1548 visitor->trace(m_v8AsyncCallTracker);
1549 visitor->trace(m_promiseTracker); 1549 visitor->trace(m_promiseTracker);
1550 visitor->trace(m_asyncOperationsForStepInto); 1550 visitor->trace(m_asyncOperations);
1551 visitor->trace(m_currentAsyncCallChain); 1551 visitor->trace(m_currentAsyncCallChain);
1552 visitor->trace(m_asyncCallTrackingListeners); 1552 visitor->trace(m_asyncCallTrackingListeners);
1553 #endif 1553 #endif
1554 InspectorBaseAgent::trace(visitor); 1554 InspectorBaseAgent::trace(visitor);
1555 } 1555 }
1556 1556
1557 } // namespace blink 1557 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698