Index: net/reporting/reporting_delegate.h |
diff --git a/net/reporting/reporting_delegate.h b/net/reporting/reporting_delegate.h |
index 7acf4c764f2911c737971c2035850c64cb38ddff..d2052f6e798920d5ae702f5ad1f852acc0d6767e 100644 |
--- a/net/reporting/reporting_delegate.h |
+++ b/net/reporting/reporting_delegate.h |
@@ -18,6 +18,8 @@ class Origin; |
namespace net { |
+class URLRequestContext; |
+ |
class NET_EXPORT ReportingDelegate { |
public: |
virtual ~ReportingDelegate(); |
@@ -38,7 +40,8 @@ class NET_EXPORT ReportingDelegate { |
virtual bool CanUseClient(const url::Origin& origin, |
const GURL& endpoint) const = 0; |
- static std::unique_ptr<ReportingDelegate> Create(); |
+ static std::unique_ptr<ReportingDelegate> Create( |
+ URLRequestContext* request_context); |
}; |
} // namespace net |