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

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

Issue 2820433005: memory-infra: Start disentangling tracing from memory-infra (Closed)
Patch Set: add todo Created 3 years, 8 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
(Empty)
1 // Copyright 2017 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 BASE_TRACE_EVENT_MEMORY_TRACING_OBSERVER_H_
6 #define BASE_TRACE_EVENT_MEMORY_TRACING_OBSERVER_H_
7
8 #include "base/macros.h"
9 #include "base/trace_event/memory_dump_manager.h"
10 #include "base/trace_event/trace_event.h"
11
12 namespace base {
13
14 namespace trace_event {
15
16 // Observes TraceLog for Enable/Disable events and when they occur Enables and
17 // Disables the MemoryDumpManager with the correct state based on reading the
18 // trace log. Also provides a method for adding a dump to the trace.
19 class BASE_EXPORT MemoryTracingObserver
20 : public TraceLog::EnabledStateObserver {
21 public:
22 static const char* const kTraceCategory;
23
24 MemoryTracingObserver(TraceLog*, MemoryDumpManager*);
25 ~MemoryTracingObserver() override;
26
27 // TraceLog::EnabledStateObserver implementation.
28 void OnTraceLogEnabled() override;
29 void OnTraceLogDisabled() override;
30
31 bool AddDumpToTraceIfEnabled(const MemoryDumpRequestArgs*,
32 const ProcessId,
33 const ProcessMemoryDump*);
34
35 private:
36 MemoryDumpManager* const memory_dump_manager_;
37 TraceLog* const trace_log_;
38
39 DISALLOW_COPY_AND_ASSIGN(MemoryTracingObserver);
40 };
41
42 } // namespace trace_event
43 } // namespace base
44
45 #endif // BASE_TRACE_EVENT_MEMORY_TRACING_OBSERVER_H_
OLDNEW
« no previous file with comments | « base/trace_event/memory_dump_manager_unittest.cc ('k') | base/trace_event/memory_tracing_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698