OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #include "net/reporting/reporting_context.h" | 5 #include "net/reporting/reporting_context.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
11 #include "base/time/clock.h" | 11 #include "base/time/clock.h" |
12 #include "base/time/default_clock.h" | 12 #include "base/time/default_clock.h" |
13 #include "base/time/default_tick_clock.h" | 13 #include "base/time/default_tick_clock.h" |
14 #include "base/time/tick_clock.h" | 14 #include "base/time/tick_clock.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
17 #include "net/base/backoff_entry.h" | 17 #include "net/base/backoff_entry.h" |
18 #include "net/reporting/reporting_cache.h" | 18 #include "net/reporting/reporting_cache.h" |
19 #include "net/reporting/reporting_delegate.h" | 19 #include "net/reporting/reporting_delegate.h" |
20 #include "net/reporting/reporting_delivery_agent.h" | 20 #include "net/reporting/reporting_delivery_agent.h" |
21 #include "net/reporting/reporting_endpoint_manager.h" | 21 #include "net/reporting/reporting_endpoint_manager.h" |
22 #include "net/reporting/reporting_garbage_collector.h" | 22 #include "net/reporting/reporting_garbage_collector.h" |
| 23 #include "net/reporting/reporting_network_change_observer.h" |
23 #include "net/reporting/reporting_observer.h" | 24 #include "net/reporting/reporting_observer.h" |
24 #include "net/reporting/reporting_persister.h" | 25 #include "net/reporting/reporting_persister.h" |
25 #include "net/reporting/reporting_policy.h" | 26 #include "net/reporting/reporting_policy.h" |
26 | 27 |
27 namespace net { | 28 namespace net { |
28 | 29 |
29 class URLRequestContext; | 30 class URLRequestContext; |
30 | 31 |
31 namespace { | 32 namespace { |
32 | 33 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 : policy_(policy), | 91 : policy_(policy), |
91 delegate_(std::move(delegate)), | 92 delegate_(std::move(delegate)), |
92 clock_(std::move(clock)), | 93 clock_(std::move(clock)), |
93 tick_clock_(std::move(tick_clock)), | 94 tick_clock_(std::move(tick_clock)), |
94 uploader_(std::move(uploader)), | 95 uploader_(std::move(uploader)), |
95 initialized_(false), | 96 initialized_(false), |
96 cache_(base::MakeUnique<ReportingCache>(this)), | 97 cache_(base::MakeUnique<ReportingCache>(this)), |
97 endpoint_manager_(base::MakeUnique<ReportingEndpointManager>(this)), | 98 endpoint_manager_(base::MakeUnique<ReportingEndpointManager>(this)), |
98 delivery_agent_(base::MakeUnique<ReportingDeliveryAgent>(this)), | 99 delivery_agent_(base::MakeUnique<ReportingDeliveryAgent>(this)), |
99 persister_(ReportingPersister::Create(this)), | 100 persister_(ReportingPersister::Create(this)), |
100 garbage_collector_(ReportingGarbageCollector::Create(this)) {} | 101 garbage_collector_(ReportingGarbageCollector::Create(this)), |
| 102 network_change_observer_(ReportingNetworkChangeObserver::Create(this)) {} |
101 | 103 |
102 } // namespace net | 104 } // namespace net |
OLD | NEW |