2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; tab-width: 20; indent-tabs-mode: nil; -*-
|
2015-07-29 22:11:15 +03:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef ANRReporter_h__
|
|
|
|
#define ANRReporter_h__
|
|
|
|
|
2016-09-21 00:42:08 +03:00
|
|
|
#include "FennecJNINatives.h"
|
2015-07-29 22:11:15 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-07-21 20:49:04 +03:00
|
|
|
class ANRReporter : public java::ANRReporter::Natives<ANRReporter> {
|
2015-07-29 22:11:15 +03:00
|
|
|
private:
|
|
|
|
ANRReporter();
|
|
|
|
|
|
|
|
public:
|
|
|
|
static bool RequestNativeStack(bool aUnwind);
|
|
|
|
static jni::String::LocalRef GetNativeStack();
|
|
|
|
static void ReleaseNativeStack();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // ANRReporter_h__
|