Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: base/trace_event/memory_dump_manager.h

Issue 1546033002: Switch to standard integer types in base/trace_event/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « base/trace_event/memory_allocator_dump_unittest.cc ('k') | base/trace_event/memory_dump_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698