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

Unified Diff: chrome/browser/hang_monitor/hang_crash_dump_win.cc

Issue 2114533002: Switch chrome_elf exception handling from breakpad to crashpad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add dependencies on the chrome_elf_common target in the blacklist target. Previously this came in i… 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
« no previous file with comments | « chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/hang_monitor/hang_crash_dump_win.cc
diff --git a/chrome/browser/hang_monitor/hang_crash_dump_win.cc b/chrome/browser/hang_monitor/hang_crash_dump_win.cc
index 456aa389cff48f8e0b0df454eb3cfeefb9338987..64daaf4e3cc41fceadef1d2764d468858d758228 100644
--- a/chrome/browser/hang_monitor/hang_crash_dump_win.cc
+++ b/chrome/browser/hang_monitor/hang_crash_dump_win.cc
@@ -25,7 +25,7 @@ void CrashDumpAndTerminateHungChildProcess(HANDLE hprocess) {
static DumpFunction request_dump = NULL;
if (!request_dump) {
request_dump = reinterpret_cast<DumpFunction>(GetProcAddress(
- GetModuleHandle(chrome::kBrowserProcessExecutableName),
+ GetModuleHandle(chrome::kChromeElfDllName),
"InjectDumpProcessWithoutCrash"));
DCHECK(request_dump) << "Failed loading DumpProcessWithoutCrash: error " <<
GetLastError();
@@ -49,7 +49,7 @@ void CrashDumpForHangDebugging(HANDLE hprocess) {
if (hprocess == GetCurrentProcess()) {
typedef void (__cdecl *DumpFunction)();
DumpFunction request_dump = reinterpret_cast<DumpFunction>(GetProcAddress(
- GetModuleHandle(chrome::kBrowserProcessExecutableName),
+ GetModuleHandle(chrome::kChromeElfDllName),
"DumpProcessWithoutCrash"));
DCHECK(request_dump) << "Failed loading DumpProcessWithoutCrash: error " <<
GetLastError();
@@ -58,7 +58,7 @@ void CrashDumpForHangDebugging(HANDLE hprocess) {
} else {
typedef HANDLE (__cdecl *DumpFunction)(HANDLE);
DumpFunction request_dump = reinterpret_cast<DumpFunction>(GetProcAddress(
- GetModuleHandle(chrome::kBrowserProcessExecutableName),
+ GetModuleHandle(chrome::kChromeElfDllName),
"InjectDumpForHangDebugging"));
DCHECK(request_dump) << "Failed loading InjectDumpForHangDebugging: error "
<< GetLastError();
« no previous file with comments | « chrome/browser/crash_upload_list/crash_upload_list_crashpad.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698