| Index: base/trace_event/heap_profiler_stack_frame_deduplicator.h
|
| diff --git a/base/trace_event/heap_profiler_stack_frame_deduplicator.h b/base/trace_event/heap_profiler_stack_frame_deduplicator.h
|
| index e8c693a990c10c595fd5ff9cd48b6cebbfedc137..4932534e1d790a578290effd9590bc0fe43a64bb 100644
|
| --- a/base/trace_event/heap_profiler_stack_frame_deduplicator.h
|
| +++ b/base/trace_event/heap_profiler_stack_frame_deduplicator.h
|
| @@ -47,6 +47,7 @@ class BASE_EXPORT StackFrameDeduplicator : public ConvertableToTraceFormat {
|
| using ConstIterator = std::vector<FrameNode>::const_iterator;
|
|
|
| StackFrameDeduplicator();
|
| + ~StackFrameDeduplicator() override;
|
|
|
| // Inserts a backtrace where |beginFrame| is a pointer to the bottom frame
|
| // (e.g. main) and |endFrame| is a pointer past the top frame (most recently
|
| @@ -66,8 +67,6 @@ class BASE_EXPORT StackFrameDeduplicator : public ConvertableToTraceFormat {
|
| void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead) override;
|
|
|
| private:
|
| - ~StackFrameDeduplicator() override;
|
| -
|
| std::map<StackFrame, int> roots_;
|
| std::vector<FrameNode> frames_;
|
|
|
|
|