// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEED_CORE_V2_REQUEST_THROTTLER_H_ #define COMPONENTS_FEED_CORE_V2_REQUEST_THROTTLER_H_ #include "base/memory/raw_ptr.h" #include "components/feed/core/v2/enums.h" class PrefService; namespace feed { // Limits number of network requests that can be made each day. class RequestThrottler { … }; } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_REQUEST_THROTTLER_H_