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

Unified Diff: net/reporting/reporting_context.cc

Issue 2829683004: Reporting: Plumb from //chrome/browser/browsing_data. (Closed)
Patch Set: Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: net/reporting/reporting_context.cc
diff --git a/net/reporting/reporting_context.cc b/net/reporting/reporting_context.cc
index 1dd255bcb1b8759b97bfc6a9be75fc2ebcd1d3ce..d3e6a679fac56b52b1f50afb4eb9bc60855ae948 100644
--- a/net/reporting/reporting_context.cc
+++ b/net/reporting/reporting_context.cc
@@ -15,6 +15,7 @@
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "net/base/backoff_entry.h"
+#include "net/reporting/reporting_browsing_data_remover.h"
#include "net/reporting/reporting_cache.h"
#include "net/reporting/reporting_delegate.h"
#include "net/reporting/reporting_delivery_agent.h"
@@ -97,6 +98,7 @@ ReportingContext::ReportingContext(const ReportingPolicy& policy,
endpoint_manager_(base::MakeUnique<ReportingEndpointManager>(this)),
delivery_agent_(base::MakeUnique<ReportingDeliveryAgent>(this)),
persister_(ReportingPersister::Create(this)),
- garbage_collector_(ReportingGarbageCollector::Create(this)) {}
+ garbage_collector_(ReportingGarbageCollector::Create(this)),
+ browsing_data_remover_(ReportingBrowsingDataRemover::Create(this)) {}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698