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

Side by Side Diff: net/url_request/report_sender.h

Issue 2365353004: Add Content-Type header to net::ReportSender reports (Closed)
Patch Set: make content type a required parameter to Send() Created 4 years, 2 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 unified diff | Download patch
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // ReportSender. When sending a report results in an error, 47 // ReportSender. When sending a report results in an error,
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,
58 const std::string& content_type,
59 const std::string& report) override;
58 void SetErrorCallback(const ErrorCallback& error_callback) override; 60 void SetErrorCallback(const ErrorCallback& error_callback) override;
59 61
60 // net::URLRequest::Delegate implementation. 62 // net::URLRequest::Delegate implementation.
61 void OnResponseStarted(URLRequest* request, int net_error) override; 63 void OnResponseStarted(URLRequest* request, int net_error) override;
62 void OnReadCompleted(URLRequest* request, int bytes_read) override; 64 void OnReadCompleted(URLRequest* request, int bytes_read) override;
63 65
64 private: 66 private:
65 net::URLRequestContext* const request_context_; 67 net::URLRequestContext* const request_context_;
66 68
67 CookiesPreference cookies_preference_; 69 CookiesPreference cookies_preference_;
68 70
69 // Owns the contained requests. 71 // Owns the contained requests.
70 std::set<URLRequest*> inflight_requests_; 72 std::set<URLRequest*> inflight_requests_;
71 73
72 // Called when a sent report results in an error. 74 // Called when a sent report results in an error.
73 ErrorCallback error_callback_; 75 ErrorCallback error_callback_;
74 76
75 DISALLOW_COPY_AND_ASSIGN(ReportSender); 77 DISALLOW_COPY_AND_ASSIGN(ReportSender);
76 }; 78 };
77 79
78 } // namespace net 80 } // namespace net
79 81
80 #endif // NET_URL_REQUEST_REPORT_SENDER_H_ 82 #endif // NET_URL_REQUEST_REPORT_SENDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698