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 COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | 5 #ifndef COMPONENTS_TRACING_COMMON_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ |
6 #define COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | 6 #define COMPONENTS_TRACING_COMMON_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
16 #include "base/trace_event/memory_dump_provider.h" | 16 #include "base/trace_event/memory_dump_provider.h" |
(...skipping 30 matching lines...) Expand all Loading... |
47 | 47 |
48 // Stores key names coming from the memtrack helper in long-lived storage. | 48 // Stores key names coming from the memtrack helper in long-lived storage. |
49 // This is to allow using cheap char* strings in tracing without copies. | 49 // This is to allow using cheap char* strings in tracing without copies. |
50 base::hash_set<std::string> key_names_; | 50 base::hash_set<std::string> key_names_; |
51 | 51 |
52 DISALLOW_COPY_AND_ASSIGN(GraphicsMemoryDumpProvider); | 52 DISALLOW_COPY_AND_ASSIGN(GraphicsMemoryDumpProvider); |
53 }; | 53 }; |
54 | 54 |
55 } // namespace tracing | 55 } // namespace tracing |
56 | 56 |
57 #endif // COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | 57 #endif // COMPONENTS_TRACING_COMMON_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ |
OLD | NEW |