Chromium Code Reviews

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

Issue 323043002: Oilpan: Prepare moving InspectorAgent related classes to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/inspector/InspectorTimelineAgent.h
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h
index 826210e388b2d94bf3e7148426c252fbde8bea8d..7124281bffce29f899fef421feecbd95f50c0e63 100644
--- a/Source/core/inspector/InspectorTimelineAgent.h
+++ b/Source/core/inspector/InspectorTimelineAgent.h
@@ -314,7 +314,7 @@ private:
double m_paintSetupEnd;
RefPtr<JSONObject> m_gpuTask;
RefPtr<JSONValue> m_pendingLayerTreeData;
- typedef HashMap<ThreadIdentifier, TimelineThreadState> ThreadStateMap;
+ typedef WillBeHeapHashMap<ThreadIdentifier, OwnPtrWillBeMember<TimelineThreadState> > ThreadStateMap;
ThreadStateMap m_threadStates;
bool m_mayEmitFirstPaint;
HashSet<String> m_liveEvents;

Powered by Google App Engine