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

Unified Diff: chrome/app/chrome_exe_main_win.cc

Issue 2867063002: Stability instrumentation Crashpad integration (Closed)
Patch Set: clang compile Created 3 years, 7 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: chrome/app/chrome_exe_main_win.cc
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc
index b1095fb081dd470f78f63f2e814c0b02e0953a15..50f8373e835ef33d632f8e9069bf4513bc50e185 100644
--- a/chrome/app/chrome_exe_main_win.cc
+++ b/chrome/app/chrome_exe_main_win.cc
@@ -244,8 +244,10 @@ int main() {
if (process_type == crash_reporter::switches::kCrashpadHandler) {
crash_reporter::SetupFallbackCrashHandling(*command_line);
+ base::string16 user_data_dir = install_static::GetUserDataDirectory();
return crash_reporter::RunAsCrashpadHandler(
- *base::CommandLine::ForCurrentProcess(), switches::kProcessType);
+ *base::CommandLine::ForCurrentProcess(), base::FilePath(user_data_dir),
+ switches::kProcessType, switches::kUserDataDir);
} else if (process_type == crash_reporter::switches::kFallbackCrashHandler) {
return RunFallbackCrashHandler(*command_line);
}

Powered by Google App Engine
This is Rietveld 408576698