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

Unified Diff: chrome/app/chrome_crash_reporter_client_win.cc

Issue 2867063002: Stability instrumentation Crashpad integration (Closed)
Patch Set: MakeProductDetails checks CurrentProcessNeedsProfileDir 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
« no previous file with comments | « no previous file | chrome/app/chrome_exe_main_win.cc » ('j') | chrome/app/chrome_exe_main_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_crash_reporter_client_win.cc
diff --git a/chrome/app/chrome_crash_reporter_client_win.cc b/chrome/app/chrome_crash_reporter_client_win.cc
index 166a13df213ba18e27c5b895c40dd31f932cb6e6..78dc79ef3a9d1c9c0c1cd5a124f49441158bb68f 100644
--- a/chrome/app/chrome_crash_reporter_client_win.cc
+++ b/chrome/app/chrome_crash_reporter_client_win.cc
@@ -14,6 +14,7 @@
#include <iterator>
#include <memory>
#include <string>
+#include <vector>
#include "base/command_line.h"
#include "base/debug/crash_logging.h"
@@ -21,6 +22,7 @@
#include "base/format_macros.h"
#include "base/rand_util.h"
#include "chrome/common/chrome_result_codes.h"
+#include "chrome/install_static/install_details.h"
#include "chrome/install_static/install_util.h"
#include "chrome/install_static/user_data_dir.h"
#include "components/crash/content/app/crashpad.h"
@@ -240,13 +242,16 @@ void ChromeCrashReporterClient::InitializeCrashReportingForProcess() {
std::wstring process_type = install_static::GetSwitchValueFromCommandLine(
::GetCommandLine(), install_static::kProcessType);
+ std::wstring user_data_dir =
+ install_static::InstallDetails::Get().user_data_dir();
grt (UTC plus 2) 2017/05/19 08:15:50 since this is such a mouthful, i've been putting h
manzagop (departed) 2017/05/19 22:02:06 Done.
// Don't set up Crashpad crash reporting in the Crashpad handler itself, nor
// in the fallback crash handler for the Crashpad handler process.
if (process_type != install_static::kCrashpadHandler &&
process_type != install_static::kFallbackHandler) {
crash_reporter::SetCrashReporterClient(instance);
crash_reporter::InitializeCrashpadWithEmbeddedHandler(
- process_type.empty(), install_static::UTF16ToUTF8(process_type));
+ process_type.empty(), install_static::UTF16ToUTF8(process_type),
+ install_static::UTF16ToUTF8(user_data_dir));
}
}
#endif // NACL_WIN64
@@ -359,7 +364,8 @@ bool ChromeCrashReporterClient::GetCrashDumpLocation(
bool ChromeCrashReporterClient::GetCrashMetricsLocation(
base::string16* metrics_dir) {
- return install_static::GetUserDataDirectory(metrics_dir, nullptr);
+ *metrics_dir = install_static::InstallDetails::Get().user_data_dir();
+ return true;
}
// TODO(ananta)
« no previous file with comments | « no previous file | chrome/app/chrome_exe_main_win.cc » ('j') | chrome/app/chrome_exe_main_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698