forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava_exception_reporter.h
33 lines (23 loc) · 1.11 KB
/
java_exception_reporter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2015 The Chromium Authors. All rights reserved.
// 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/base_export.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);
} // namespace android
} // namespace base
#endif // BASE_ANDROID_JAVA_EXCEPTION_REPORTER_H_