| 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_MEMORY_DUMP_MANAGER_H_ | 5 #ifndef BASE_TRACE_EVENT_MEMORY_DUMP_MANAGER_H_ |
| 6 #define BASE_TRACE_EVENT_MEMORY_DUMP_MANAGER_H_ | 6 #define BASE_TRACE_EVENT_MEMORY_DUMP_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <memory> | 11 #include <memory> |
| 10 #include <set> | 12 #include <set> |
| 11 #include <vector> | 13 #include <vector> |
| 12 | 14 |
| 13 #include "base/atomicops.h" | 15 #include "base/atomicops.h" |
| 14 #include "base/containers/hash_tables.h" | 16 #include "base/containers/hash_tables.h" |
| 17 #include "base/macros.h" |
| 15 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/singleton.h" | 19 #include "base/memory/singleton.h" |
| 17 #include "base/synchronization/lock.h" | 20 #include "base/synchronization/lock.h" |
| 18 #include "base/timer/timer.h" | 21 #include "base/timer/timer.h" |
| 19 #include "base/trace_event/memory_dump_request_args.h" | 22 #include "base/trace_event/memory_dump_request_args.h" |
| 20 #include "base/trace_event/process_memory_dump.h" | 23 #include "base/trace_event/process_memory_dump.h" |
| 21 #include "base/trace_event/trace_event.h" | 24 #include "base/trace_event/trace_event.h" |
| 22 | 25 |
| 23 namespace base { | 26 namespace base { |
| 24 | 27 |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 } | 324 } |
| 322 | 325 |
| 323 private: | 326 private: |
| 324 DISALLOW_COPY_AND_ASSIGN(MemoryDumpManagerDelegate); | 327 DISALLOW_COPY_AND_ASSIGN(MemoryDumpManagerDelegate); |
| 325 }; | 328 }; |
| 326 | 329 |
| 327 } // namespace trace_event | 330 } // namespace trace_event |
| 328 } // namespace base | 331 } // namespace base |
| 329 | 332 |
| 330 #endif // BASE_TRACE_EVENT_MEMORY_DUMP_MANAGER_H_ | 333 #endif // BASE_TRACE_EVENT_MEMORY_DUMP_MANAGER_H_ |
| OLD | NEW |