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

Unified Diff: base/debug/dump_without_crashing.cc

Issue 1814423002: Patch to try dump-on-DCHECK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comment Created 4 years, 9 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 | « base/debug/dump_without_crashing.h ('k') | base/logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/dump_without_crashing.cc
diff --git a/base/debug/dump_without_crashing.cc b/base/debug/dump_without_crashing.cc
index 47fd873c19fd084c51d5e48455db040269ca47b3..4b338ca2930b69d110fd545176029aec75f9cd4a 100644
--- a/base/debug/dump_without_crashing.cc
+++ b/base/debug/dump_without_crashing.cc
@@ -18,9 +18,12 @@ namespace base {
namespace debug {
-void DumpWithoutCrashing() {
- if (dump_without_crashing_function_)
+bool DumpWithoutCrashing() {
+ if (dump_without_crashing_function_) {
(*dump_without_crashing_function_)();
+ return true;
+ }
+ return false;
}
void SetDumpWithoutCrashingFunction(void (CDECL *function)()) {
« no previous file with comments | « base/debug/dump_without_crashing.h ('k') | base/logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698