// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_ #define NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_ #include <memory> #include "net/base/net_export.h" #include "net/base/rand_callback.h" #include "net/reporting/reporting_endpoint.h" class GURL; namespace base { class TickClock; } namespace net { class NetworkAnonymizationKey; class ReportingCache; class ReportingDelegate; struct ReportingEndpoint; struct ReportingPolicy; // Keeps track of which endpoints are pending (have active delivery attempts to // them) or in exponential backoff after one or more failures, and chooses an // endpoint from an endpoint group to receive reports for an origin. class NET_EXPORT ReportingEndpointManager { … }; } // namespace net #endif // NET_REPORTING_REPORTING_ENDPOINT_MANAGER_H_