summaryrefslogtreecommitdiffstats
path: root/chrome/tools/crash_service/crash_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/tools/crash_service/crash_service.cc')
-rwxr-xr-x[-rw-r--r--]chrome/tools/crash_service/crash_service.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/tools/crash_service/crash_service.cc b/chrome/tools/crash_service/crash_service.cc
index 5872935..ba2acbc 100644..100755
--- a/chrome/tools/crash_service/crash_service.cc
+++ b/chrome/tools/crash_service/crash_service.cc
@@ -211,6 +211,10 @@ bool CrashService::Initialize(const std::wstring& command_line) {
if (cmd_line.HasSwitch(kPipeName))
pipe_name = cmd_line.GetSwitchValueNative(kPipeName);
+#ifdef _WIN64
+ pipe_name += L"-x64";
+#endif
+
if (max_reports > 0) {
// Create the http sender object.
sender_ = new CrashReportSender(checkpoint_path.value());