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

Unified Diff: chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc

Issue 2088133002: Switch chrome_elf exception handling from breakpad to crashpad. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 6 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/browser/crash_upload_list/crash_upload_list_crashpad.cc
diff --git a/chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc b/chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc
index af1bbec975d5a243f93351425f581263bc543e9f..0522f246e46dbbd5ce522970dc864be45fa9c8a6 100644
--- a/chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc
+++ b/chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc
@@ -22,10 +22,12 @@ typedef void (*GetCrashReportsPointer)(
void GetReportsThunk(
std::vector<crash_reporter::Report>* reports) {
static GetCrashReportsPointer get_crash_reports = []() {
- HMODULE exe_module = GetModuleHandle(chrome::kBrowserProcessExecutableName);
+ // The crash reporting is handled by chrome_elf.dll which loads early in
+ // the chrome process.
+ HMODULE elf_module = GetModuleHandle(L"chrome_elf.dll");
return reinterpret_cast<GetCrashReportsPointer>(
- exe_module ? GetProcAddress(exe_module, "GetCrashReportsImpl")
- : nullptr);
+ elf_module ? GetProcAddress(elf_module, "GetCrashReportsImpl")
+ : nullptr);
}();
if (get_crash_reports) {

Powered by Google App Engine
This is Rietveld 408576698