summaryrefslogtreecommitdiff
path: root/chromium/base/debug/dump_without_crashing.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/debug/dump_without_crashing.cc')
-rw-r--r--chromium/base/debug/dump_without_crashing.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/chromium/base/debug/dump_without_crashing.cc b/chromium/base/debug/dump_without_crashing.cc
index 3e2fa17ca68..4aa94a15d80 100644
--- a/chromium/base/debug/dump_without_crashing.cc
+++ b/chromium/base/debug/dump_without_crashing.cc
@@ -5,6 +5,7 @@
#include "base/debug/dump_without_crashing.h"
#include "base/check.h"
+#include "base/trace_event/base_tracing.h"
namespace {
@@ -19,6 +20,7 @@ namespace base {
namespace debug {
bool DumpWithoutCrashing() {
+ TRACE_EVENT0("base", "DumpWithoutCrashing");
if (dump_without_crashing_function_) {
(*dump_without_crashing_function_)();
return true;