Index: src/heap-profiler.h |
diff --git a/src/heap-profiler.h b/src/heap-profiler.h |
index adc3da2b86b02f054af4d2f807193ec209797563..b63c716af6b2ce731f3aeeb0657f177ecccacb5e 100644 |
--- a/src/heap-profiler.h |
+++ b/src/heap-profiler.h |
@@ -242,20 +242,9 @@ class RetainerHeapProfile BASE_EMBEDDED { |
void StoreReference(const JSObjectsCluster& cluster, HeapObject* ref); |
private: |
- // Limit on the number of retainers to be printed per cluster. |
- static const int kMaxRetainersToPrint = 50; |
ZoneScope zscope_; |
JSObjectsRetainerTree retainers_tree_; |
ClustersCoarser coarser_; |
- // TODO(mnaganov): Use some helper class to hold these state variables. |
- JSObjectsClusterTree* coarse_cluster_tree_; |
- Printer* current_printer_; |
- StringStream* current_stream_; |
- public: |
- // Used by JSObjectsRetainerTree::ForEach. |
- void Call(const JSObjectsCluster& cluster, JSObjectsClusterTree* tree); |
- void Call(const JSObjectsCluster& cluster, |
- const NumberAndSizeInfo& number_and_size); |
}; |