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

Unified Diff: src/client/linux/microdump_writer/microdump_writer.h

Issue 1334473003: Add GPU fingerprint information to breakpad microdumps. (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Resolve TODO. 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: src/client/linux/microdump_writer/microdump_writer.h
diff --git a/src/client/linux/microdump_writer/microdump_writer.h b/src/client/linux/microdump_writer/microdump_writer.h
index e218558363cf3f34d89f534470b5d6f3c262da38..66b4759f4265134dd6810edb9307ade460db8a6a 100644
--- a/src/client/linux/microdump_writer/microdump_writer.h
+++ b/src/client/linux/microdump_writer/microdump_writer.h
@@ -37,6 +37,8 @@
namespace google_breakpad {
+struct MicrodumpExtraInfo;
+
// Writes a microdump (a reduced dump containing only the state of the crashing
// thread) on the console (logcat on Android). These functions do not malloc nor
// use libc functions which may. Thus, it can be used in contexts where the
@@ -52,12 +54,10 @@ namespace google_breakpad {
// version (e.g., WebView:42.0.2311.136).
//
// Returns true iff successful.
-bool WriteMicrodump(pid_t crashing_process,
- const void* blob,
- size_t blob_size,
- const MappingList& mappings,
- const char* build_fingerprint,
- const char* product_info);
+bool WriteMicrodump(
+ pid_t crashing_process, const void* blob, size_t blob_size,
+ const MappingList& mappings,
+ const MicrodumpExtraInfo& microdump_extra_info);
} // namespace google_breakpad

Powered by Google App Engine
This is Rietveld 408576698