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

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

Issue 323043002: Oilpan: Prepare moving InspectorAgent related classes to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 { 1429 {
1430 m_scripts.clear(); 1430 m_scripts.clear();
1431 m_breakpointIdToDebugServerBreakpointIds.clear(); 1431 m_breakpointIdToDebugServerBreakpointIds.clear();
1432 m_asyncCallStackTracker.clear(); 1432 m_asyncCallStackTracker.clear();
1433 if (m_frontend) 1433 if (m_frontend)
1434 m_frontend->globalObjectCleared(); 1434 m_frontend->globalObjectCleared();
1435 } 1435 }
1436 1436
1437 void InspectorDebuggerAgent::trace(Visitor* visitor) 1437 void InspectorDebuggerAgent::trace(Visitor* visitor)
1438 { 1438 {
1439 visitor->trace(m_injectedScriptManager);
1439 visitor->trace(m_listener); 1440 visitor->trace(m_listener);
1440 InspectorBaseAgent::trace(visitor); 1441 InspectorBaseAgent::trace(visitor);
1441 } 1442 }
1442 1443
1443 } // namespace blink 1444 } // namespace blink
1444 1445
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.h ('k') | Source/core/inspector/InspectorHeapProfilerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698