OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | |
6 #define COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/containers/hash_tables.h" | |
11 #include "base/memory/scoped_ptr.h" | |
petrcermak
2015/10/05 08:29:27
I don't think you need this include.
Primiano Tucci (use gerrit)
2015/10/05 14:24:25
Done.
| |
12 #include "base/memory/singleton.h" | |
13 #include "base/trace_event/memory_dump_provider.h" | |
14 #include "components/tracing/tracing_export.h" | |
15 | |
16 namespace tracing { | |
17 | |
18 // Dump provider which collects memory stats about graphics memory on Android. | |
19 // This requires the presence of the memtrack_helper daemon, which must be | |
20 // executed separetely via a (root) adb shell command. The dump provider will | |
21 // fail (and hence disabled by the MemoryDumpManager) in absence of the helper. | |
22 // See the design-doc https://goo.gl/4Y30p9 for more details. | |
23 class TRACING_EXPORT GraphicsMemoryDumpProvider | |
24 : public base::trace_event::MemoryDumpProvider { | |
25 public: | |
26 static GraphicsMemoryDumpProvider* GetInstance(); | |
27 | |
28 // MemoryDumpProvider implementation. | |
29 bool OnMemoryDump(const base::trace_event::MemoryDumpArgs& args, | |
30 base::trace_event::ProcessMemoryDump* pmd) override; | |
31 | |
32 private: | |
33 friend struct base::DefaultSingletonTraits<GraphicsMemoryDumpProvider>; | |
34 | |
35 GraphicsMemoryDumpProvider(); | |
36 ~GraphicsMemoryDumpProvider() override; | |
37 | |
38 // Stores key names coming from the memtrack helper in long-lived storage. | |
39 // This is to allow using cheap char* strings in tracing without copies. | |
40 base::hash_set<std::string> key_names_; | |
41 | |
42 DISALLOW_COPY_AND_ASSIGN(GraphicsMemoryDumpProvider); | |
43 }; | |
44 | |
45 } // namespace tracing | |
46 | |
47 #endif // COMPONENTS_TRACING_GRAPHICS_MEMORY_DUMP_PROVIDER_ANDROID_H_ | |
OLD | NEW |