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

Unified Diff: src/inspector/v8-stack-trace-impl.h

Issue 2884613004: [inspector] added in-deeper-frame continue-to-location strategy
Patch Set: rebased Created 3 years, 7 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
« no previous file with comments | « src/inspector/v8-debugger.cc ('k') | src/inspector/v8-stack-trace-impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/v8-stack-trace-impl.h
diff --git a/src/inspector/v8-stack-trace-impl.h b/src/inspector/v8-stack-trace-impl.h
index 5ce051bd5c703bbaca938ed6a3e2a3f6463f4b37..5c624a5283ffc9e5db87e8845f6aae67609ab731 100644
--- a/src/inspector/v8-stack-trace-impl.h
+++ b/src/inspector/v8-stack-trace-impl.h
@@ -74,6 +74,7 @@ class V8StackTraceImpl : public V8StackTrace {
std::unique_ptr<StringBuffer> toString() const override;
bool isEqualIgnoringTopFrame(V8StackTraceImpl* stackTrace) const;
+ bool isPrefix(V8StackTraceImpl* stackTrace) const;
private:
V8StackTraceImpl(std::vector<std::shared_ptr<StackFrame>> frames,
@@ -94,6 +95,7 @@ class V8StackTraceImpl : public V8StackTrace {
std::vector<std::shared_ptr<StackFrame>>::const_iterator m_currentEnd;
AsyncStackTrace* m_parent;
};
+ void allFrames(std::vector<StackFrame*>* frames) const;
std::vector<std::shared_ptr<StackFrame>> m_frames;
int m_maxAsyncDepth;
« no previous file with comments | « src/inspector/v8-debugger.cc ('k') | src/inspector/v8-stack-trace-impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698