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

Unified Diff: components/crash/content/app/breakpad_linux.cc

Issue 1371093002: Chromium changes required to roll breakpad GPU fingerprint changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add breakpad roll. 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
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/content/app/breakpad_linux.cc
diff --git a/components/crash/content/app/breakpad_linux.cc b/components/crash/content/app/breakpad_linux.cc
index c08a7f9039d32c49040415f73dcd7ee19fcb4353..39d7618a06553ebe4002f261a45ba8fb02691a4f 100644
--- a/components/crash/content/app/breakpad_linux.cc
+++ b/components/crash/content/app/breakpad_linux.cc
@@ -714,7 +714,7 @@ void InitMicrodumpCrashHandlerIfNecessary(const std::string& process_type) {
g_microdump_product_info = strdup(
(product_name + std::string(":") + product_version).c_str());
ANNOTATE_LEAKING_OBJECT_PTR(g_microdump_product_info);
- descriptor.SetMicrodumpProductInfo(g_microdump_product_info);
+ descriptor.microdump_extra_info()->product_info = g_microdump_product_info;
}
const char* android_build_fp =
@@ -722,7 +722,8 @@ void InitMicrodumpCrashHandlerIfNecessary(const std::string& process_type) {
if (android_build_fp) {
g_microdump_build_fingerprint = strdup(android_build_fp);
ANNOTATE_LEAKING_OBJECT_PTR(g_microdump_build_fingerprint);
- descriptor.SetMicrodumpBuildFingerprint(g_microdump_build_fingerprint);
+ descriptor.microdump_extra_info()->build_fingerprint =
+ g_microdump_build_fingerprint;
}
DCHECK(!g_microdump);
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698