#include "snapshot/minidump/memory_snapshot_minidump.h"
#include <memory>
#include "base/numerics/safe_math.h"
namespace crashpad {
namespace internal {
MemorySnapshotMinidump::MemorySnapshotMinidump()
: … { … }
MemorySnapshotMinidump::~MemorySnapshotMinidump() { … }
bool MemorySnapshotMinidump::Initialize(FileReaderInterface* file_reader,
RVA location) { … }
uint64_t MemorySnapshotMinidump::Address() const { … }
size_t MemorySnapshotMinidump::Size() const { … }
bool MemorySnapshotMinidump::Read(Delegate* delegate) const { … }
const MemorySnapshot* MemorySnapshotMinidump::MergeWithOtherSnapshot(
const MemorySnapshot* other) const { … }
}
}