blob: 3f296ab63bf9190902e4a15dd9e3b9653a14e7f9 [file] [log] [blame]
// Copyright 2014 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 CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
#define CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_
#include "base/compiler_specific.h"
#include "components/crash/app/crash_reporter_client.h"
namespace chromecast {
class CastCrashReporterClientAndroid
: public crash_reporter::CrashReporterClient {
public:
explicit CastCrashReporterClientAndroid(const std::string& process_type);
~CastCrashReporterClientAndroid() override;
// crash_reporter::CrashReporterClient implementation:
void GetProductNameAndVersion(const char** product_name,
const char** version) override;
base::FilePath GetReporterLogFilename() override;
bool GetCrashDumpLocation(base::FilePath* crash_dir) override;
int GetAndroidMinidumpDescriptor() override;
bool GetCollectStatsConsent() override;
bool EnableBreakpadForProcess(
const std::string& process_type) override;
size_t RegisterCrashKeys() override;
private:
std::string process_type_;
DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid);
};
} // namespace chromecast
#endif // CHROMECAST_CRASH_ANDROID_CAST_CRASH_REPORTER_CLIENT_ANDROID_H_