| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_URL_REQUEST_REPORT_SENDER_H_ | 5 #ifndef NET_URL_REQUEST_REPORT_SENDER_H_ |
| 6 #define NET_URL_REQUEST_REPORT_SENDER_H_ | 6 #define NET_URL_REQUEST_REPORT_SENDER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 // |error_callback| is called with the report URI and net error as | 48 // |error_callback| is called with the report URI and net error as |
| 49 // arguments. | 49 // arguments. |
| 50 ReportSender(URLRequestContext* request_context, | 50 ReportSender(URLRequestContext* request_context, |
| 51 CookiesPreference cookies_preference, | 51 CookiesPreference cookies_preference, |
| 52 const ErrorCallback& error_callback); | 52 const ErrorCallback& error_callback); |
| 53 | 53 |
| 54 ~ReportSender() override; | 54 ~ReportSender() override; |
| 55 | 55 |
| 56 // TransportSecurityState::ReportSenderInterface implementation. | 56 // TransportSecurityState::ReportSenderInterface implementation. |
| 57 void Send(const GURL& report_uri, const std::string& report) override; | 57 void Send(const GURL& report_uri, const std::string& report) override; |
| 58 void SetContentTypeHeader(const std::string& content_type) override; |
| 58 void SetErrorCallback(const ErrorCallback& error_callback) override; | 59 void SetErrorCallback(const ErrorCallback& error_callback) override; |
| 59 | 60 |
| 60 // net::URLRequest::Delegate implementation. | 61 // net::URLRequest::Delegate implementation. |
| 61 void OnResponseStarted(URLRequest* request, int net_error) override; | 62 void OnResponseStarted(URLRequest* request, int net_error) override; |
| 62 void OnReadCompleted(URLRequest* request, int bytes_read) override; | 63 void OnReadCompleted(URLRequest* request, int bytes_read) override; |
| 63 | 64 |
| 64 private: | 65 private: |
| 65 net::URLRequestContext* const request_context_; | 66 net::URLRequestContext* const request_context_; |
| 66 | 67 |
| 67 CookiesPreference cookies_preference_; | 68 CookiesPreference cookies_preference_; |
| 68 | 69 |
| 69 // Owns the contained requests. | 70 // Owns the contained requests. |
| 70 std::set<URLRequest*> inflight_requests_; | 71 std::set<URLRequest*> inflight_requests_; |
| 71 | 72 |
| 73 // The value of the Content-Type header that should be sent on |
| 74 // outgoing reports. |
| 75 std::string content_type_; |
| 76 |
| 72 // Called when a sent report results in an error. | 77 // Called when a sent report results in an error. |
| 73 ErrorCallback error_callback_; | 78 ErrorCallback error_callback_; |
| 74 | 79 |
| 75 DISALLOW_COPY_AND_ASSIGN(ReportSender); | 80 DISALLOW_COPY_AND_ASSIGN(ReportSender); |
| 76 }; | 81 }; |
| 77 | 82 |
| 78 } // namespace net | 83 } // namespace net |
| 79 | 84 |
| 80 #endif // NET_URL_REQUEST_REPORT_SENDER_H_ | 85 #endif // NET_URL_REQUEST_REPORT_SENDER_H_ |
| OLD | NEW |