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

Unified Diff: components/crash/content/app/crashpad_win.cc

Issue 2909623002: Change DumpProcessWithoutCrash to use load-time dynamic linking (Closed)
Patch Set: rebase Created 3 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: components/crash/content/app/crashpad_win.cc
diff --git a/components/crash/content/app/crashpad_win.cc b/components/crash/content/app/crashpad_win.cc
index 77ccc323567b71aaef640ba1457e07036d14fd30..574e5392f03408089d6cf3ea6f8135f3904944fc 100644
--- a/components/crash/content/app/crashpad_win.cc
+++ b/components/crash/content/app/crashpad_win.cc
@@ -157,19 +157,12 @@ base::FilePath PlatformCrashpadInitialization(
return database_path;
}
-// TODO(scottmg): http://crbug.com/546288 These exported functions are for
-// compatibility with how Breakpad worked, but it seems like there's no need to
-// do the CreateRemoteThread() dance with a minor extension of the Crashpad API
-// (to just pass the pid we want a dump for). We should add that and then modify
-// hang_crash_dump_win.cc to work in a more direct manner.
-
-// Used for dumping a process state when there is no crash.
-extern "C" void __declspec(dllexport) __cdecl DumpProcessWithoutCrash() {
- CRASHPAD_SIMULATE_CRASH();
-}
-
namespace {
+void DumpProcessWithoutCrash() {
+ CRASHPAD_SIMULATE_CRASH();
scottmg 2017/06/15 23:08:47 indent. ... In fact, we don't need this function a
Will Harris 2017/06/15 23:37:24 CRASHPAD_SIMULATE_CRASH calls code linked with chr
scottmg 2017/06/16 00:26:24 I'm not sure what you mean. We're calling it right
Will Harris 2017/06/21 14:31:26 only one function exists now.
+}
+
// We need to prevent ICF from folding DumpProcessForHungInputThread(),
// DumpProcessForHungInputNoCrashKeysThread() together, since that makes them
// indistinguishable in crash dumps. We do this by making the function
« components/crash/content/app/crashpad.cc ('K') | « components/crash/content/app/crashpad.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698