chromium/components/download/internal/background_service/store.h

// Copyright 2017 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_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_
#define COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_

#include <memory>
#include <string>
#include <vector>

#include "base/functional/callback_forward.h"

namespace download {

struct Entry;

// A backing storage interface responsible for persisting Entry objects.
class Store {};

}  // namespace download

#endif  // COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_STORE_H_