| OLD | NEW | 
|    1 // Copyright 2015 The Chromium Authors. All rights reserved. |    1 // Copyright 2015 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #ifndef BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ |    5 #ifndef BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ | 
|    6 #define BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ |    6 #define BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ | 
|    7  |    7  | 
 |    8 #include <stddef.h> | 
 |    9  | 
|    8 #include <set> |   10 #include <set> | 
|    9  |   11  | 
|   10 #include "base/base_export.h" |   12 #include "base/base_export.h" | 
|   11 #include "base/containers/hash_tables.h" |   13 #include "base/containers/hash_tables.h" | 
|   12 #include "base/macros.h" |   14 #include "base/macros.h" | 
|   13 #include "base/memory/ref_counted.h" |   15 #include "base/memory/ref_counted.h" | 
|   14 #include "base/trace_event/heap_profiler_allocation_context.h" |   16 #include "base/trace_event/heap_profiler_allocation_context.h" | 
|   15  |   17  | 
|   16 namespace base { |   18 namespace base { | 
|   17 namespace trace_event { |   19 namespace trace_event { | 
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   95   TypeNameDeduplicator* const type_name_deduplicator_; |   97   TypeNameDeduplicator* const type_name_deduplicator_; | 
|   96  |   98  | 
|   97   DISALLOW_COPY_AND_ASSIGN(HeapDumpWriter); |   99   DISALLOW_COPY_AND_ASSIGN(HeapDumpWriter); | 
|   98 }; |  100 }; | 
|   99  |  101  | 
|  100 }  // namespace internal |  102 }  // namespace internal | 
|  101 }  // namespace trace_event |  103 }  // namespace trace_event | 
|  102 }  // namespace base |  104 }  // namespace base | 
|  103  |  105  | 
|  104 #endif  // BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ |  106 #endif  // BASE_TRACE_EVENT_HEAP_PROFILER_HEAP_DUMP_WRITER_H_ | 
| OLD | NEW |