Index: src/profiler/allocation-tracker.cc |
diff --git a/src/profiler/allocation-tracker.cc b/src/profiler/allocation-tracker.cc |
index a910dc178056488fc70fe9466244a19454d674a6..452e21a78e0a72f6596107584ce10fa00bb1a62f 100644 |
--- a/src/profiler/allocation-tracker.cc |
+++ b/src/profiler/allocation-tracker.cc |
@@ -230,9 +230,9 @@ void AllocationTracker::AllocationEvent(Address addr, int size) { |
Isolate* isolate = heap->isolate(); |
int length = 0; |
- StackTraceFrameIterator it(isolate); |
+ JavaScriptFrameIterator it(isolate); |
while (!it.done() && length < kMaxAllocationTraceLength) { |
- StandardFrame* frame = it.frame(); |
+ JavaScriptFrame* frame = it.frame(); |
SharedFunctionInfo* shared = frame->function()->shared(); |
SnapshotObjectId id = ids_->FindOrAddEntry( |
shared->address(), shared->Size(), false); |