// 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_MODEL_H_ #define COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_MODEL_H_ #include <stddef.h> #include <memory> #include <string> #include <vector> #include "components/download/internal/background_service/entry.h" #include "components/download/public/background_service/clients.h" namespace download { class Store; // The model that contains a runtime representation of Entry entries. Any // updates to the model will be persisted to a backing |Store| as necessary. class Model { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_MODEL_H_