| Index: base/debug/dump_without_crashing.cc
|
| diff --git a/base/debug/dump_without_crashing.cc b/base/debug/dump_without_crashing.cc
|
| index 4b338ca2930b69d110fd545176029aec75f9cd4a..47fd873c19fd084c51d5e48455db040269ca47b3 100644
|
| --- a/base/debug/dump_without_crashing.cc
|
| +++ b/base/debug/dump_without_crashing.cc
|
| @@ -18,12 +18,9 @@
|
|
|
| namespace debug {
|
|
|
| -bool DumpWithoutCrashing() {
|
| - if (dump_without_crashing_function_) {
|
| +void DumpWithoutCrashing() {
|
| + if (dump_without_crashing_function_)
|
| (*dump_without_crashing_function_)();
|
| - return true;
|
| - }
|
| - return false;
|
| }
|
|
|
| void SetDumpWithoutCrashingFunction(void (CDECL *function)()) {
|
|
|