Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(874)

Unified Diff: net/reporting/reporting_report.h

Issue 2708503002: Reporting: Implement cache. (Closed)
Patch Set: Make requested changes. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/reporting/reporting_report.h
diff --git a/net/reporting/reporting_report.h b/net/reporting/reporting_report.h
new file mode 100644
index 0000000000000000000000000000000000000000..973935413d711900fe356822212099ba2b150c83
--- /dev/null
+++ b/net/reporting/reporting_report.h
@@ -0,0 +1,57 @@
+// Copyright 2017 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 NET_REPORTING_REPORTING_REPORT_H_
+#define NET_REPORTING_REPORTING_REPORT_H_
+
+#include <memory>
+#include <string>
+
+#include "base/time/time.h"
+#include "net/base/net_export.h"
+#include "url/gurl.h"
+
+namespace base {
+class Value;
+} // namespace base
+
+namespace net {
+
+// An undelivered report.
+struct NET_EXPORT ReportingReport {
+ public:
+ ReportingReport(const GURL& url,
+ const std::string& group,
+ const std::string& type,
+ std::unique_ptr<const base::Value> body,
+ base::TimeTicks queued,
+ int attempts);
+ ~ReportingReport();
+
+ // The URL of the document that triggered the report.
+ GURL url;
+
+ // The endpoint group that should be used to deliver the report.
+ std::string group;
+
+ // The type of the report.
+ std::string type;
+
+ // The body of the report.
+ std::unique_ptr<const base::Value> body;
+
+ // When the report was queued.
+ base::TimeTicks queued;
+
+ // The number of delivery attempts made so far, not including an active
+ // attempt.
+ int attempts = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ReportingReport);
+};
+
+} // namespace net
+
+#endif // NET_REPORTING_REPORTING_REPORT_H_

Powered by Google App Engine
This is Rietveld 408576698