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

Unified Diff: client/linux/handler/microdump_extra_info.h

Issue 2087413002: Add process type to MicroDumpExtraInfo (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad/src.git@master
Patch Set: rebase Created 4 years, 5 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
« no previous file with comments | « no previous file | client/linux/microdump_writer/microdump_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/linux/handler/microdump_extra_info.h
diff --git a/client/linux/handler/microdump_extra_info.h b/client/linux/handler/microdump_extra_info.h
index b9c3d30dc06ef46972362b95eedff6f6a513ac98..bf01f0c7b1d4667542598ea55a242c07c503b334 100644
--- a/client/linux/handler/microdump_extra_info.h
+++ b/client/linux/handler/microdump_extra_info.h
@@ -38,9 +38,13 @@ struct MicrodumpExtraInfo {
const char* build_fingerprint;
const char* product_info;
const char* gpu_fingerprint;
+ const char* process_type;
MicrodumpExtraInfo()
- : build_fingerprint(NULL), product_info(NULL), gpu_fingerprint(NULL) {}
+ : build_fingerprint(NULL),
+ product_info(NULL),
+ gpu_fingerprint(NULL),
+ process_type(NULL) {}
};
}
« no previous file with comments | « no previous file | client/linux/microdump_writer/microdump_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698