Index: src/heap.cc |
diff --git a/src/heap.cc b/src/heap.cc |
index 67759e67b63aee8552c827f92e2c68add42d02f2..d65a0335580dbda50e4b9d51c84605e344ec3e6e 100644 |
--- a/src/heap.cc |
+++ b/src/heap.cc |
@@ -1854,7 +1854,7 @@ class ScavengingVisitor : public StaticVisitorBase { |
HEAP_PROFILE(heap, ObjectMoveEvent(source->address(), target->address())); |
Isolate* isolate = heap->isolate(); |
if (isolate->logger()->is_logging_code_events() || |
- CpuProfiler::is_profiling(isolate)) { |
+ isolate->cpu_profiler()->is_profiling()) { |
if (target->IsSharedFunctionInfo()) { |
PROFILE(isolate, SharedFunctionInfoMoveEvent( |
source->address(), target->address())); |
@@ -2110,7 +2110,7 @@ static void InitializeScavengingVisitorsTables() { |
void Heap::SelectScavengingVisitorsTable() { |
bool logging_and_profiling = |
isolate()->logger()->is_logging() || |
- CpuProfiler::is_profiling(isolate()) || |
+ isolate()->cpu_profiler()->is_profiling() || |
(isolate()->heap_profiler() != NULL && |
isolate()->heap_profiler()->is_profiling()); |