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

Unified Diff: content/shell/app/shell_crash_reporter_client.cc

Issue 633833002: Breakpad Linux: Do not use std::string in a compromised context. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix content shell too Created 6 years, 2 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 | « content/shell/app/shell_crash_reporter_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_crash_reporter_client.cc
diff --git a/content/shell/app/shell_crash_reporter_client.cc b/content/shell/app/shell_crash_reporter_client.cc
index 854bfaf43e4e712c2373b0d5db615dd8a8a7eedc..0ab490c3b793799814410150c5088892bb746334 100644
--- a/content/shell/app/shell_crash_reporter_client.cc
+++ b/content/shell/app/shell_crash_reporter_client.cc
@@ -36,8 +36,8 @@ void ShellCrashReporterClient::GetProductNameAndVersion(
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS)
void ShellCrashReporterClient::GetProductNameAndVersion(
- std::string* product_name,
- std::string* version) {
+ const char** product_name,
+ const char** version) {
*product_name = "content_shell";
*version = CONTENT_SHELL_VERSION;
}
« no previous file with comments | « content/shell/app/shell_crash_reporter_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698