blob: 99508c20a652dbf13e82bd2c8985e0f174631692 [file] [log] [blame]
// Copyright 2017 The Chromium OS 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 CRASH_REPORTER_SERVICE_FAILURE_COLLECTOR_H_
#define CRASH_REPORTER_SERVICE_FAILURE_COLLECTOR_H_
#include <string>
#include <base/macros.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "crash-reporter/crash_collector.h"
// Service failure collector.
class ServiceFailureCollector : public CrashCollector {
public:
ServiceFailureCollector();
~ServiceFailureCollector() override;
// Collects service failure.
bool Collect();
protected:
std::string failure_report_path_;
private:
friend class ServiceFailureCollectorTest;
FRIEND_TEST(ServiceFailureCollectorTest, CollectOK);
// Service failure dump consists only of the signature.
bool LoadServiceFailure(std::string *signature);
DISALLOW_COPY_AND_ASSIGN(ServiceFailureCollector);
};
#endif // CRASH_REPORTER_SERVICE_FAILURE_COLLECTOR_H_