| Index: src/profiler/sampling-heap-profiler.cc
|
| diff --git a/src/profiler/sampling-heap-profiler.cc b/src/profiler/sampling-heap-profiler.cc
|
| index a32cae3ef9c926c77aa448d614ca7ed2793cbec7..474dff20c057a4d53f8d1243a2da4d1ba6dd5e01 100644
|
| --- a/src/profiler/sampling-heap-profiler.cc
|
| +++ b/src/profiler/sampling-heap-profiler.cc
|
| @@ -143,7 +143,7 @@ SamplingHeapProfiler::AllocationNode* SamplingHeapProfiler::AddStack() {
|
| StackTraceFrameIterator it(isolate_);
|
| int frames_captured = 0;
|
| while (!it.done() && frames_captured < stack_depth_) {
|
| - JavaScriptFrame* frame = it.frame();
|
| + StandardFrame* frame = it.frame();
|
| SharedFunctionInfo* shared = frame->function()->shared();
|
| stack.push_back(shared);
|
|
|
|
|