diff --git a/atom.gyp b/atom.gyp index 4bb0dfce9b68..d0aaefa1f5e3 100644 --- a/atom.gyp +++ b/atom.gyp @@ -420,7 +420,7 @@ 'tools/mac/generate_breakpad_symbols.py', '--build-dir=<(PRODUCT_DIR)', '--binary=<(PRODUCT_DIR)/<(product_name).app/Contents/MacOS/<(product_name)', - '--symbols-dir=<(PRODUCT_DIR)/atom-shell.breakpad.syms', + '--symbols-dir=<(PRODUCT_DIR)/Atom-Shell.breakpad.syms', '--clear', '--jobs=16', ], diff --git a/common/crash_reporter/crash_reporter_mac.mm b/common/crash_reporter/crash_reporter_mac.mm index f3ab45d62ff4..dac77e792340 100644 --- a/common/crash_reporter/crash_reporter_mac.mm +++ b/common/crash_reporter/crash_reporter_mac.mm @@ -31,7 +31,7 @@ void CrashReporterMac::InitBreakpad(const std::string& product_name, NSMutableDictionary* parameters = [NSMutableDictionary dictionaryWithCapacity:4]; - [parameters setValue:@"atom-shell" + [parameters setValue:@"Atom-Shell" forKey:@BREAKPAD_PRODUCT]; [parameters setValue:base::SysUTF8ToNSString(product_name) forKey:@BREAKPAD_PRODUCT_DISPLAY]; diff --git a/common/crash_reporter/crash_reporter_win.cc b/common/crash_reporter/crash_reporter_win.cc index 39837ecf08b9..e62986b0800d 100644 --- a/common/crash_reporter/crash_reporter_win.cc +++ b/common/crash_reporter/crash_reporter_win.cc @@ -100,7 +100,7 @@ google_breakpad::CustomClientInfo* CrashReporterWin::GetCustomInfo( custom_info_entries_.reserve(2 + upload_parameters_.size()); custom_info_entries_.push_back(google_breakpad::CustomInfoEntry( - L"prod", UTF8ToWide(product_name).c_str())); + L"prod", L"Atom-Shell")); custom_info_entries_.push_back(google_breakpad::CustomInfoEntry( L"ver", UTF8ToWide(version).c_str())); diff --git a/spec/fixtures/api/crash.html b/spec/fixtures/api/crash.html index 8933288a7c69..b0c3664b7024 100644 --- a/spec/fixtures/api/crash.html +++ b/spec/fixtures/api/crash.html @@ -3,6 +3,7 @@