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

Unified Diff: src/profile-generator.h

Issue 1045753002: CpuProfiler: public API for deopt info in cpu profiler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: size_t Created 5 years, 9 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: src/profile-generator.h
diff --git a/src/profile-generator.h b/src/profile-generator.h
index e013e29c5db77a1e9852c5a9ef691f789cb96e77..b62318b9212a49ec9be720be3236b10714f7d16c 100644
--- a/src/profile-generator.h
+++ b/src/profile-generator.h
@@ -38,11 +38,8 @@ class JITLineInfoTable : public Malloced {
struct DeoptInfo {
+ typedef v8::CpuProfileDeoptInfo::Frame Frame;
const char* deopt_reason;
- struct Frame {
- int script_id;
- int position;
- };
std::vector<Frame> stack;
};

Powered by Google App Engine
This is Rietveld 408576698