// Copyright 2022 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_STREAM_INFO_CARD_TRACKER_H_ #define COMPONENTS_FEED_CORE_V2_STREAM_INFO_CARD_TRACKER_H_ #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "base/time/time.h" #include "components/feed/core/proto/v2/wire/info_card.pb.h" #include "components/feed/core/v2/public/common_enums.h" class PrefService; namespace feed { // Tracks the raw counts of the info cards in order to determine their // acknowledgement states. class InfoCardTracker { … }; } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_STREAM_INFO_CARD_TRACKER_H_