Index: Source/core/inspector/InspectorDebuggerAgent.h |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h |
index 6024504285899ec627437c267824a26d6a34dccf..69db80469e9819b33d1d1014096026f4f180e088 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.h |
+++ b/Source/core/inspector/InspectorDebuggerAgent.h |
@@ -238,6 +238,7 @@ private: |
PassRefPtrWillBeRawPtr<JavaScriptCallFrame> topCallFrameSkipUnknownSources(); |
String scriptURL(JavaScriptCallFrame*); |
+ AsyncCallStackTracker& asyncCallStackTracker() { return *m_asyncCallStackTracker; }; |
typedef HashMap<String, Script> ScriptsMap; |
typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpointIdsMap; |
@@ -263,7 +264,7 @@ private: |
int m_minFrameCountForSkip; |
bool m_skipAllPauses; |
OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp; |
- AsyncCallStackTracker m_asyncCallStackTracker; |
+ OwnPtrWillBeMember<AsyncCallStackTracker> m_asyncCallStackTracker; |
}; |
} // namespace blink |