summaryrefslogtreecommitdiffstats
path: root/chromium/base/android/java_exception_reporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/android/java_exception_reporter.h')
-rw-r--r--chromium/base/android/java_exception_reporter.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/chromium/base/android/java_exception_reporter.h b/chromium/base/android/java_exception_reporter.h
new file mode 100644
index 00000000000..50c3cabfb26
--- /dev/null
+++ b/chromium/base/android/java_exception_reporter.h
@@ -0,0 +1,42 @@
+// Copyright 2015 The Chromium Authors
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_ANDROID_JAVA_EXCEPTION_REPORTER_H_
+#define BASE_ANDROID_JAVA_EXCEPTION_REPORTER_H_
+
+#include <jni.h>
+
+#include "base/android/scoped_java_ref.h"
+#include "base/base_export.h"
+#include "base/functional/callback_forward.h"
+
+namespace base {
+namespace android {
+
+// Install the exception handler. This should only be called once per process.
+BASE_EXPORT void InitJavaExceptionReporter();
+
+// Same as above except the handler ensures child process exists immediately
+// after an unhandled exception. This is used for child processes because
+// DumpWithoutCrashing does not work for child processes on Android.
+BASE_EXPORT void InitJavaExceptionReporterForChildProcess();
+
+// Sets a callback to be called with the contents of a Java exception, which may
+// be nullptr.
+BASE_EXPORT void SetJavaExceptionCallback(void (*)(const char* exception));
+
+// Calls the Java exception callback, if any, with exception.
+void SetJavaException(const char* exception);
+
+// Sets a filter that determines whether a java exception should cause a crash
+// report. |java_exception_filter| should return true if a crash report should
+// be generated.
+BASE_EXPORT void SetJavaExceptionFilter(
+ base::RepeatingCallback<bool(const JavaRef<jthrowable>&)>
+ java_exception_filter);
+
+} // namespace android
+} // namespace base
+
+#endif // BASE_ANDROID_JAVA_EXCEPTION_REPORTER_H_