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

Unified Diff: Source/core/inspector/InspectorBaseAgent.h

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added agents() Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorBaseAgent.h
diff --git a/Source/core/inspector/InspectorBaseAgent.h b/Source/core/inspector/InspectorBaseAgent.h
index eae8210979a35633618be2aa14522043f1123730..dfda25164bd6c4dc0c20893bfcb6407a128b2e68 100644
--- a/Source/core/inspector/InspectorBaseAgent.h
+++ b/Source/core/inspector/InspectorBaseAgent.h
@@ -32,6 +32,7 @@
#define InspectorBaseAgent_h
#include "InspectorBackendDispatcher.h"
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
@@ -43,10 +44,11 @@ class InspectorCompositeState;
class InspectorState;
class InstrumentingAgents;
-class InspectorAgent {
+class InspectorAgent : public NoBaseWillBeGarbageCollectedFinalized<InspectorAgent> {
public:
explicit InspectorAgent(const String&);
virtual ~InspectorAgent();
+ virtual void trace(Visitor*) { }
virtual void init() { }
virtual void setFrontend(InspectorFrontend*) { }
@@ -68,10 +70,10 @@ private:
String m_name;
};
-class InspectorAgentRegistry {
+class InspectorAgentRegistry : public NoBaseWillBeGarbageCollectedFinalized<InspectorAgentRegistry> {
public:
InspectorAgentRegistry(InstrumentingAgents*, InspectorCompositeState*);
- void append(PassOwnPtr<InspectorAgent>);
+ void append(PassOwnPtrWillBeRawPtr<InspectorAgent>);
void setFrontend(InspectorFrontend*);
void clearFrontend();
@@ -80,10 +82,12 @@ public:
void discardAgents();
void flushPendingFrontendMessages();
+ void trace(Visitor*);
+
private:
InstrumentingAgents* m_instrumentingAgents;
InspectorCompositeState* m_inspectorState;
- Vector<OwnPtr<InspectorAgent> > m_agents;
+ WillBeHeapVector<OwnPtrWillBeMember<InspectorAgent> > m_agents;
};
template<typename T>

Powered by Google App Engine
This is Rietveld 408576698