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

Unified Diff: snapshot/minidump/process_snapshot_minidump.h

Issue 1364053002: win: Save contents of PEB to minidump (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@save-teb
Patch Set: mac2 Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: snapshot/minidump/process_snapshot_minidump.h
diff --git a/snapshot/minidump/process_snapshot_minidump.h b/snapshot/minidump/process_snapshot_minidump.h
index 44ce5d56abcee1ee3b1ee9c8083a849ac909f1b7..cc60a3b4f777df0a642105e96110b6566fbf6ac0 100644
--- a/snapshot/minidump/process_snapshot_minidump.h
+++ b/snapshot/minidump/process_snapshot_minidump.h
@@ -38,6 +38,8 @@
namespace crashpad {
+class MemorySnapshot;
Mark Mentovai 2015/09/25 17:05:34 The other things like ExceptionSnapshot that are n
scottmg 2015/09/25 17:29:31 Done.
+
//! \brief A ProcessSnapshot based on a minidump file.
class ProcessSnapshotMinidump final : public ProcessSnapshot {
public:
@@ -68,6 +70,7 @@ class ProcessSnapshotMinidump final : public ProcessSnapshot {
std::vector<const ThreadSnapshot*> Threads() const override;
std::vector<const ModuleSnapshot*> Modules() const override;
const ExceptionSnapshot* Exception() const override;
+ std::vector<const MemorySnapshot*> ExtraMemory() const override;
private:
// Initializes data carried in a MinidumpCrashpadInfo stream on behalf of

Powered by Google App Engine
This is Rietveld 408576698