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

Unified Diff: net/url_request/url_request_context.cc

Issue 2249213002: [OBSOLETE] Reporting: Initial implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years 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/url_request/url_request_context.cc
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index 9388cebf0ead7931a50d9d6f80c1f4ce7589c086..f50cb5a958982401f1bb1537c1a5af9b6651a1ba 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -35,6 +35,7 @@ URLRequestContext::URLRequestContext()
transport_security_state_(nullptr),
cert_transparency_verifier_(nullptr),
ct_policy_enforcer_(nullptr),
+ reporting_service_(nullptr),
http_transaction_factory_(nullptr),
job_factory_(nullptr),
throttler_manager_(nullptr),
@@ -76,6 +77,7 @@ void URLRequestContext::CopyFrom(const URLRequestContext* other) {
set_sdch_manager(other->sdch_manager_);
set_http_user_agent_settings(other->http_user_agent_settings_);
set_network_quality_estimator(other->network_quality_estimator_);
+ set_reporting_service(other->reporting_service_);
set_enable_brotli(other->enable_brotli_);
set_check_cleartext_permitted(other->check_cleartext_permitted_);
}

Powered by Google App Engine
This is Rietveld 408576698