blob: 258490398b4e97f829bb669ca46c088290eccf51 (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// 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 CHROME_BROWSER_FEEDBACK_FEEDBACK_REPORT_H_
#define CHROME_BROWSER_FEEDBACK_FEEDBACK_REPORT_H_
#include <string>
#include "base/basictypes.h"
#include "base/callback_forward.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
namespace base {
class SequencedTaskRunner;
}
namespace content {
class BrowserContext;
}
namespace feedback {
typedef base::Callback<void(const std::string&)> 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::RefCounted<FeedbackReport> {
public:
FeedbackReport(content::BrowserContext* context,
const base::Time& upload_at,
const std::string& data);
// Stops the disk write of the report and deletes the report file if already
// written.
void DeleteReportOnDisk();
const base::Time& upload_at() const { return upload_at_; }
const std::string& data() const { return data_; }
// Loads the reports still on disk and queues then using the given callback.
// This call blocks on the file reads.
static void LoadReportsAndQueue(const base::FilePath& user_dir,
QueueCallback callback);
private:
friend class base::RefCounted<FeedbackReport>;
virtual ~FeedbackReport();
// Name of the file corresponding to this report.
base::FilePath file_;
base::FilePath reports_path_;
base::Time upload_at_; // Upload this report at or after this time.
std::string data_;
scoped_refptr<base::SequencedTaskRunner> reports_task_runner_;
DISALLOW_COPY_AND_ASSIGN(FeedbackReport);
};
} // namespace feedback
#endif // CHROME_BROWSER_FEEDBACK_FEEDBACK_REPORT_H_
|