chromium/components/feed/core/v2/tasks/prefetch_images_task.h

// 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_TASKS_PREFETCH_IMAGES_TASK_H_
#define COMPONENTS_FEED_CORE_V2_TASKS_PREFETCH_IMAGES_TASK_H_

#include <memory>

#include "base/memory/raw_ref.h"
#include "base/memory/weak_ptr.h"
#include "components/feed/core/v2/tasks/load_stream_from_store_task.h"
#include "components/offline_pages/task/task.h"

namespace feed {
class FeedStream;
class StreamModel;

// Prefetch the images in the model.
class PrefetchImagesTask : public offline_pages::Task {};
}  // namespace feed

#endif  // COMPONENTS_FEED_CORE_V2_TASKS_PREFETCH_IMAGES_TASK_H_