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

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

Issue 809023003: Oilpan: fix build after r187362. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after
1556 m_scripts.clear(); 1556 m_scripts.clear();
1557 m_breakpointIdToDebugServerBreakpointIds.clear(); 1557 m_breakpointIdToDebugServerBreakpointIds.clear();
1558 resetAsyncCallTracker(); 1558 resetAsyncCallTracker();
1559 promiseTracker().clear(); 1559 promiseTracker().clear();
1560 if (m_frontend) 1560 if (m_frontend)
1561 m_frontend->globalObjectCleared(); 1561 m_frontend->globalObjectCleared();
1562 } 1562 }
1563 1563
1564 void InspectorDebuggerAgent::trace(Visitor* visitor) 1564 void InspectorDebuggerAgent::trace(Visitor* visitor)
1565 { 1565 {
1566 #if ENABLE(OILPAN)
haraken 2014/12/17 14:34:43 kouhei@: BTW, we can now remove #if ENABLE(OILPAN)
1566 visitor->trace(m_injectedScriptManager); 1567 visitor->trace(m_injectedScriptManager);
1567 visitor->trace(m_listener); 1568 visitor->trace(m_listener);
1568 visitor->trace(m_asyncCallStackTracker); 1569 visitor->trace(m_asyncCallStackTracker);
1569 #if ENABLE(OILPAN)
1570 visitor->trace(m_promiseTracker); 1570 visitor->trace(m_promiseTracker);
1571 visitor->trace(m_asyncOperationsForStepInto); 1571 visitor->trace(m_asyncOperationsForStepInto);
1572 visitor->trace(m_currentAsyncCallChain);
1572 #endif 1573 #endif
1573 InspectorBaseAgent::trace(visitor); 1574 InspectorBaseAgent::trace(visitor);
1574 } 1575 }
1575 1576
1576 } // namespace blink 1577 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | Source/core/inspector/WorkerDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698