chromium/components/feed/core/v2/web_feed_subscriptions/fetch_subscribed_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_SUBSCRIBED_WEB_FEEDS_TASK_H_
#define COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_FETCH_SUBSCRIBED_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 feed {
class FeedStream;

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

}  // namespace feed

#endif  // COMPONENTS_FEED_CORE_V2_WEB_FEED_SUBSCRIPTIONS_FETCH_SUBSCRIBED_WEB_FEEDS_TASK_H_