// 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_USER_ACTIONS_COLLECTOR_H_ #define COMPONENTS_FEED_CORE_V2_USER_ACTIONS_COLLECTOR_H_ #include "base/memory/raw_ptr.h" #include "base/time/clock.h" #include "base/values.h" class GURL; class PrefService; namespace feed { // UserActionsCollector stores, retrieves and summarizes the entity mids of the // feed articles that the user clicked on in the past. class UserActionsCollector { … }; } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_USER_ACTIONS_COLLECTOR_H_