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 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1279 { | 1279 { |
1280 m_scripts.clear(); | 1280 m_scripts.clear(); |
1281 m_breakpointIdToDebugServerBreakpointIds.clear(); | 1281 m_breakpointIdToDebugServerBreakpointIds.clear(); |
1282 m_asyncCallStackTracker.clear(); | 1282 m_asyncCallStackTracker.clear(); |
1283 if (m_frontend) | 1283 if (m_frontend) |
1284 m_frontend->globalObjectCleared(); | 1284 m_frontend->globalObjectCleared(); |
1285 } | 1285 } |
1286 | 1286 |
1287 void InspectorDebuggerAgent::trace(Visitor* visitor) | 1287 void InspectorDebuggerAgent::trace(Visitor* visitor) |
1288 { | 1288 { |
| 1289 visitor->trace(m_injectedScriptManager); |
1289 visitor->trace(m_listener); | 1290 visitor->trace(m_listener); |
1290 InspectorBaseAgent::trace(visitor); | 1291 InspectorBaseAgent::trace(visitor); |
1291 } | 1292 } |
1292 | 1293 |
1293 } // namespace WebCore | 1294 } // namespace WebCore |
1294 | 1295 |
OLD | NEW |