chromium/components/feed/core/v2/web_feed_subscriptions/fetch_recommended_web_feeds_task.h

// Copyright 2021 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_WEB_FEED_SUBSCRIPTIONS_FETCH_RECOMMENDED_WEB_FEEDS_TASK_H_
#define COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_FETCH_RECOMMENDED_WEB_FEEDS_TASK_H_

#include "base/memory/raw_ref.h"
#include "components/feed/core/proto/v2/store.pb.h"
#include "components/feed/core/proto/v2/wire/web_feeds.pb.h"
#include "components/feed/core/v2/enums.h"
#include "components/feed/core/v2/feed_network.h"
#include "components/feed/core/v2/operation_token.h"
#include "components/feed/core/v2/public/types.h"
#include "components/offline_pages/task/task.h"

namespace feedwire {
namespace webfeed {
class ListRecommendedWebFeedsResponse;
}  // namespace webfeed
}  // namespace feedwire

namespace feed {
class FeedStream;

// Fetches and returns the recommended web feeds.
class FetchRecommendedWebFeedsTask : public offline_pages::Task {};

}  // namespace feed

#endif  // COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_FETCH_RECOMMENDED_WEB_FEEDS_TASK_H_