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

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

Issue 2825903002: [inspector] deduplicate stack frames (Closed)
Patch Set: addressed comments Created 3 years, 8 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 38722ea2f11324efa71b7bc6b9fe55a3239aced6..ba8fa3feeb712362948c73ee3f225d350cff73de 100644
--- a/src/inspector/v8-stack-trace-impl.h
+++ b/src/inspector/v8-stack-trace-impl.h
@@ -20,6 +20,28 @@ class AsyncStackTrace;
class V8Debugger;
class WasmTranslation;
+class StackFrame {
+ public:
+ explicit StackFrame(v8::Local<v8::StackFrame> frame);
+ ~StackFrame() = default;
+
+ void translate(WasmTranslation* wasmTranslation);
+
+ const String16& functionName() const;
+ const String16& scriptId() const;
+ const String16& sourceURL() const;
+ int lineNumber() const; // 0-based.
+ int columnNumber() const; // 0-based.
+ std::unique_ptr<protocol::Runtime::CallFrame> buildInspectorObject() const;
+
+ private:
+ String16 m_functionName;
+ String16 m_scriptId;
+ String16 m_sourceURL;
+ int m_lineNumber; // 0-based.
+ int m_columnNumber; // 0-based.
+};
+
class V8StackTraceImpl : public V8StackTrace {
public:
static void setCaptureStackTraceForUncaughtExceptions(v8::Isolate*,
@@ -50,34 +72,13 @@ class V8StackTraceImpl : public V8StackTrace {
const override;
std::unique_ptr<StringBuffer> toString() const override;
- class Frame {
- public:
- explicit Frame(v8::Local<v8::StackFrame> frame);
- ~Frame() = default;
-
- void translate(WasmTranslation* wasmTranslation);
-
- const String16& functionName() const;
- const String16& scriptId() const;
- const String16& sourceURL() const;
- int lineNumber() const; // 0-based.
- int columnNumber() const; // 0-based.
- std::unique_ptr<protocol::Runtime::CallFrame> buildInspectorObject() const;
-
- private:
- String16 m_functionName;
- String16 m_scriptId;
- String16 m_sourceURL;
- int m_lineNumber; // 0-based.
- int m_columnNumber; // 0-based.
- };
-
private:
- V8StackTraceImpl(const std::vector<Frame> frames, int maxAsyncDepth,
+ V8StackTraceImpl(std::vector<std::shared_ptr<StackFrame>> frames,
+ int maxAsyncDepth,
std::shared_ptr<AsyncStackTrace> asyncParent,
std::shared_ptr<AsyncStackTrace> asyncCreation);
- std::vector<Frame> m_frames;
+ std::vector<std::shared_ptr<StackFrame>> m_frames;
int m_maxAsyncDepth;
std::weak_ptr<AsyncStackTrace> m_asyncParent;
std::weak_ptr<AsyncStackTrace> m_asyncCreation;
@@ -102,14 +103,14 @@ class AsyncStackTrace {
private:
AsyncStackTrace(int contextGroupId, const String16& description,
- const std::vector<V8StackTraceImpl::Frame>& frames,
+ std::vector<std::shared_ptr<StackFrame>> frames,
std::shared_ptr<AsyncStackTrace> asyncParent,
std::shared_ptr<AsyncStackTrace> asyncCreation);
int m_contextGroupId;
String16 m_description;
- std::vector<V8StackTraceImpl::Frame> m_frames;
+ std::vector<std::shared_ptr<StackFrame>> m_frames;
std::weak_ptr<AsyncStackTrace> m_asyncParent;
std::weak_ptr<AsyncStackTrace> m_asyncCreation;
« 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