Index: src/profiler/heap-profiler.h |
diff --git a/src/profiler/heap-profiler.h b/src/profiler/heap-profiler.h |
index 74539ae142786557bc3229e870b66f076192ed78..9a04e83af4b0ca2f3725f8a10fcdabd322ba41b7 100644 |
--- a/src/profiler/heap-profiler.h |
+++ b/src/profiler/heap-profiler.h |
@@ -16,7 +16,6 @@ |
class AllocationTracker; |
class HeapObjectsMap; |
class HeapSnapshot; |
-class SamplingHeapProfiler; |
class StringsStorage; |
class HeapProfiler { |
@@ -29,10 +28,6 @@ |
HeapSnapshot* TakeSnapshot( |
v8::ActivityControl* control, |
v8::HeapProfiler::ObjectNameResolver* resolver); |
- |
- bool StartSamplingHeapProfiler(uint64_t sample_interval, int stack_depth); |
- void StopSamplingHeapProfiler(); |
- AllocationProfile* GetAllocationProfile(); |
void StartHeapObjectsTracking(bool track_allocations); |
void StopHeapObjectsTracking(); |
@@ -84,7 +79,6 @@ |
base::SmartPointer<AllocationTracker> allocation_tracker_; |
bool is_tracking_object_moves_; |
base::Mutex profiler_mutex_; |
- base::SmartPointer<SamplingHeapProfiler> sampling_heap_profiler_; |
}; |
} // namespace internal |