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

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

Issue 829503002: Oilpan: fix build after r187699. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add missing WorkerInspectorController tracing Created 5 years, 12 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
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 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 1558
1559 void InspectorDebuggerAgent::trace(Visitor* visitor) 1559 void InspectorDebuggerAgent::trace(Visitor* visitor)
1560 { 1560 {
1561 #if ENABLE(OILPAN) 1561 #if ENABLE(OILPAN)
1562 visitor->trace(m_injectedScriptManager); 1562 visitor->trace(m_injectedScriptManager);
1563 visitor->trace(m_listener); 1563 visitor->trace(m_listener);
1564 visitor->trace(m_v8AsyncCallTracker); 1564 visitor->trace(m_v8AsyncCallTracker);
1565 visitor->trace(m_promiseTracker); 1565 visitor->trace(m_promiseTracker);
1566 visitor->trace(m_asyncOperationsForStepInto); 1566 visitor->trace(m_asyncOperationsForStepInto);
1567 visitor->trace(m_currentAsyncCallChain); 1567 visitor->trace(m_currentAsyncCallChain);
1568 visitor->trace(m_asyncCallTrackingListeners);
1568 #endif 1569 #endif
1569 InspectorBaseAgent::trace(visitor); 1570 InspectorBaseAgent::trace(visitor);
1570 } 1571 }
1571 1572
1572 } // namespace blink 1573 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698