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 SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ | 5 #ifndef SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ |
6 #define SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ | 6 #define SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "base/basictypes.h" | |
11 #include "base/macros.h" | 12 #include "base/macros.h" |
12 #include "base/trace_event/memory_dump_request_args.h" | 13 #include "base/trace_event/memory_dump_request_args.h" |
13 #include "third_party/skia/include/core/SkTraceMemoryDump.h" | 14 #include "third_party/skia/include/core/SkTraceMemoryDump.h" |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 namespace trace_event { | 17 namespace trace_event { |
17 class MemoryAllocatorDump; | 18 class MemoryAllocatorDump; |
18 class ProcessMemoryDump; | 19 class ProcessMemoryDump; |
19 } | 20 } |
20 } | 21 } |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 64 |
64 // Stores the level of detail for the current dump. | 65 // Stores the level of detail for the current dump. |
65 LevelOfDetail request_level_; | 66 LevelOfDetail request_level_; |
66 | 67 |
67 DISALLOW_COPY_AND_ASSIGN(SkiaTraceMemoryDumpImpl); | 68 DISALLOW_COPY_AND_ASSIGN(SkiaTraceMemoryDumpImpl); |
68 }; | 69 }; |
69 | 70 |
70 } // namespace skia | 71 } // namespace skia |
71 | 72 |
72 #endif // SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ | 73 #endif // SKIA_EXT_SK_TRACE_MEMORY_DUMP_CHROME_H_ |
OLD | NEW |