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

Unified Diff: net/reporting/reporting_delegate.h

Issue 2889193002: Reporting: Add ReportingDelegate to check site permissions (Closed)
Patch Set: rebase, tweak, format Created 3 years, 7 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
« no previous file with comments | « net/reporting/reporting_context.cc ('k') | net/reporting/reporting_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/reporting/reporting_delegate.h
diff --git a/net/reporting/reporting_delegate.h b/net/reporting/reporting_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..7acf4c764f2911c737971c2035850c64cb38ddff
--- /dev/null
+++ b/net/reporting/reporting_delegate.h
@@ -0,0 +1,46 @@
+// 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_DELEGATE_H_
+#define NET_REPORTING_REPORTING_DELEGATE_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "net/base/net_export.h"
+
+class GURL;
+
+namespace url {
+class Origin;
+} // namespace url
+
+namespace net {
+
+class NET_EXPORT ReportingDelegate {
+ public:
+ virtual ~ReportingDelegate();
+
+ // Checks whether |origin| is allowed to queue reports for future delivery.
+ virtual bool CanQueueReport(const url::Origin& origin) const = 0;
+
+ // Checks whether |origin| is allowed to receive reports, either in real time
+ // or that were queued earlier.
+ virtual bool CanSendReport(const url::Origin& origin) const = 0;
+
+ // Checks whether |origin| can set |endpoint| to be used for future report
+ // deliveries.
+ virtual bool CanSetClient(const url::Origin& origin,
+ const GURL& endpoint) const = 0;
+
+ // Checks whether |origin| can use |endpoint| for a report delivery right now.
+ virtual bool CanUseClient(const url::Origin& origin,
+ const GURL& endpoint) const = 0;
+
+ static std::unique_ptr<ReportingDelegate> Create();
+};
+
+} // namespace net
+
+#endif // NET_REPORTING_REPORTING_DELEGATE_H_
« no previous file with comments | « net/reporting/reporting_context.cc ('k') | net/reporting/reporting_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698