Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |