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

Unified Diff: components/crash/app/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 | « components/crash/app/crash_reporter_client.h ('k') | content/shell/app/shell_crash_reporter_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/app/crash_reporter_client.cc
diff --git a/components/crash/app/crash_reporter_client.cc b/components/crash/app/crash_reporter_client.cc
index c3907edeb95ae1c4e73142139c0506000dd4f080..4f9fd92b15189ae74eb84c150cfc1dd529f09832 100644
--- a/components/crash/app/crash_reporter_client.cc
+++ b/components/crash/app/crash_reporter_client.cc
@@ -79,8 +79,8 @@ void CrashReporterClient::RecordCrashDumpAttempt(bool is_real_crash) {
#endif
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS)
-void CrashReporterClient::GetProductNameAndVersion(std::string* product_name,
- std::string* version) {
+void CrashReporterClient::GetProductNameAndVersion(const char** product_name,
+ const char** version) {
}
base::FilePath CrashReporterClient::GetReporterLogFilename() {
« no previous file with comments | « components/crash/app/crash_reporter_client.h ('k') | content/shell/app/shell_crash_reporter_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698