Use "= delete" for DISALLOW_COPY and DISALLOW_ASSIGN.
[chromium-blink-merge.git] / base / trace_event / process_memory_maps.h
blobdc1892fd6221852efebc870aba50f72c1da62f18
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.
5 #ifndef BASE_TRACE_EVENT_PROCESS_MEMORY_MAPS_H_
6 #define BASE_TRACE_EVENT_PROCESS_MEMORY_MAPS_H_
8 #include <string>
9 #include <vector>
11 #include "base/base_export.h"
12 #include "base/basictypes.h"
14 namespace base {
15 namespace trace_event {
17 class TracedValue;
19 // Data model for process-wide memory stats.
20 class BASE_EXPORT ProcessMemoryMaps {
21 public:
22 struct VMRegion {
23 static const uint32 kProtectionFlagsRead;
24 static const uint32 kProtectionFlagsWrite;
25 static const uint32 kProtectionFlagsExec;
27 uint64 start_address;
28 uint64 size_in_bytes;
29 uint32 protection_flags;
30 std::string mapped_file;
32 // private_resident + shared_resident = resident set size.
33 uint64 byte_stats_private_resident;
34 uint64 byte_stats_shared_resident;
36 // For multiprocess accounting.
37 uint64 byte_stats_proportional_resident;
40 ProcessMemoryMaps();
41 ~ProcessMemoryMaps();
43 void AddVMRegion(const VMRegion& region) { vm_regions_.push_back(region); }
44 const std::vector<VMRegion>& vm_regions() const { return vm_regions_; }
46 // Called at trace generation time to populate the TracedValue.
47 void AsValueInto(TracedValue* value) const;
49 private:
50 std::vector<VMRegion> vm_regions_;
52 DISALLOW_COPY_AND_ASSIGN(ProcessMemoryMaps);
55 } // namespace trace_event
56 } // namespace base
58 #endif // BASE_TRACE_EVENT_PROCESS_MEMORY_MAPS_H_