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

Unified Diff: chrome/app/chrome_main.cc

Issue 2909623002: Change DumpProcessWithoutCrash to use load-time dynamic linking (Closed)
Patch Set: 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_elf/chrome_elf.def » ('j') | components/crash/content/app/crashpad_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_main.cc
diff --git a/chrome/app/chrome_main.cc b/chrome/app/chrome_main.cc
index aec129c9bd1b72991d0c4e482c2c41e3e91b47e5..117c4085351f22d3267ca28a21c7e3c3484133d9 100644
--- a/chrome/app/chrome_main.cc
+++ b/chrome/app/chrome_main.cc
@@ -29,6 +29,7 @@
#include "chrome/common/chrome_constants.h"
#include "chrome/install_static/initialize_from_primary_module.h"
#include "chrome/install_static/install_details.h"
+#include "chrome_elf/chrome_elf_main.h"
#define DLLEXPORT __declspec(dllexport)
@@ -69,15 +70,7 @@ int ChromeMain(int argc, const char** argv) {
params.instance = instance;
params.sandbox_info = sandbox_info;
- // SetDumpWithoutCrashingFunction must be passed the DumpProcess function
- // from chrome_elf and not from the DLL in order for DumpWithoutCrashing to
- // function correctly.
- typedef void (__cdecl *DumpProcessFunction)();
- DumpProcessFunction DumpProcess = reinterpret_cast<DumpProcessFunction>(
- ::GetProcAddress(::GetModuleHandle(chrome::kChromeElfDllName),
- "DumpProcessWithoutCrash"));
- CHECK(DumpProcess);
- base::debug::SetDumpWithoutCrashingFunction(DumpProcess);
+ base::debug::SetDumpWithoutCrashingFunction(GetDumpWithoutCrashingFunction());
Will Harris 2017/05/26 05:54:38 I'm not sure it's okay to call this function in ch
Will Harris 2017/05/26 06:03:34 so fwiw current chrome.dll already calls these fun
// Verify that chrome_elf and this module (chrome.dll and chrome_child.dll)
// have the same version.
« no previous file with comments | « no previous file | chrome_elf/chrome_elf.def » ('j') | components/crash/content/app/crashpad_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698