| Index: net/reporting/reporting_context.h
|
| diff --git a/net/reporting/reporting_context.h b/net/reporting/reporting_context.h
|
| index ca495a75a75ad0266fa1b0036fdea34e86f3f519..dd2b3d171f8af7c681bf39eb4662bce87cffe0aa 100644
|
| --- a/net/reporting/reporting_context.h
|
| +++ b/net/reporting/reporting_context.h
|
| @@ -20,6 +20,7 @@ class TickClock;
|
|
|
| namespace net {
|
|
|
| +class ReportingBrowsingDataRemover;
|
| class ReportingCache;
|
| class ReportingDelegate;
|
| class ReportingDeliveryAgent;
|
| @@ -67,6 +68,9 @@ class NET_EXPORT ReportingContext {
|
| ReportingGarbageCollector* garbage_collector() {
|
| return garbage_collector_.get();
|
| }
|
| + ReportingBrowsingDataRemover* browsing_data_remover() {
|
| + return browsing_data_remover_.get();
|
| + }
|
|
|
| ReportingPersister* persister() { return persister_.get(); }
|
|
|
| @@ -112,6 +116,9 @@ class NET_EXPORT ReportingContext {
|
| // |network_change_observer_| must come after |cache_|.
|
| std::unique_ptr<ReportingNetworkChangeObserver> network_change_observer_;
|
|
|
| + // |browsing_data_remover_| must come after |cache_|.
|
| + std::unique_ptr<ReportingBrowsingDataRemover> browsing_data_remover_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ReportingContext);
|
| };
|
|
|
|
|