| 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 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1497 m_frontend->globalObjectCleared(); | 1497 m_frontend->globalObjectCleared(); |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 void InspectorDebuggerAgent::trace(Visitor* visitor) | 1500 void InspectorDebuggerAgent::trace(Visitor* visitor) |
| 1501 { | 1501 { |
| 1502 visitor->trace(m_injectedScriptManager); | 1502 visitor->trace(m_injectedScriptManager); |
| 1503 visitor->trace(m_listener); | 1503 visitor->trace(m_listener); |
| 1504 visitor->trace(m_asyncCallStackTracker); | 1504 visitor->trace(m_asyncCallStackTracker); |
| 1505 #if ENABLE(OILPAN) | 1505 #if ENABLE(OILPAN) |
| 1506 visitor->trace(m_promiseTracker); | 1506 visitor->trace(m_promiseTracker); |
| 1507 visitor->trace(m_asyncOperationsForStepInto); |
| 1507 #endif | 1508 #endif |
| 1508 InspectorBaseAgent::trace(visitor); | 1509 InspectorBaseAgent::trace(visitor); |
| 1509 } | 1510 } |
| 1510 | 1511 |
| 1511 } // namespace blink | 1512 } // namespace blink |
| OLD | NEW |