// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_ #define COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_ #include <string> #include "base/files/file_path.h" #include "base/functional/callback_forward.h" #include "base/memory/ref_counted.h" #include "base/task/sequenced_task_runner.h" #include "base/time/time.h" namespace feedback { class FeedbackReport; // Repeating since for every feedback report file on disk, the callback to // queue it in the uploader needs to be invoked. QueueCallback; // This class holds a feedback report. Once a report is created, a disk backup // for it is created automatically. This backup needs to explicitly be // deleted by calling DeleteReportOnDisk. class FeedbackReport : public base::RefCountedThreadSafe<FeedbackReport> { … }; } // namespace feedback #endif // COMPONENTS_FEEDBACK_FEEDBACK_REPORT_H_