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

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

Issue 323043002: Oilpan: Prepare moving InspectorAgent related classes to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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 7b25ebf03fd2b00e09e91eb5b1a1763e8667a83e..b7565a4e9e6896e0f439a8c2fe83d43671694bf1 100644
--- a/Source/core/inspector/InspectorBaseAgent.h
+++ b/Source/core/inspector/InspectorBaseAgent.h
@@ -65,8 +65,7 @@ public:
protected:
RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
- // FIXME: Oilpan: Move InspectorState to heap in follow-up CL.
- InspectorState* m_state;
+ RawPtrWillBeMember<InspectorState> m_state;
private:
String m_name;
@@ -89,8 +88,7 @@ public:
private:
RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
- // FIXME: Oilpan: Move InspectorCompositeState to heap in follow-up CL.
- InspectorCompositeState* m_inspectorState;
+ RawPtrWillBeMember<InspectorCompositeState> m_inspectorState;
WillBeHeapVector<OwnPtrWillBeMember<InspectorAgent> > m_agents;
};

Powered by Google App Engine
This is Rietveld 408576698