chromium/chrome/browser/reading_list/reading_list_model_factory.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 CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_FACTORY_H_
#define CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_FACTORY_H_

#include "build/build_config.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/reading_list/core/dual_reading_list_model.h"
#include "components/reading_list/core/reading_list_model.h"
#include "content/public/browser/browser_context.h"

namespace base {
template <typename T>
class NoDestructor;
}

// Singleton that owns all ReadingListModels and associates them with
// BrowserContexts.
class ReadingListModelFactory : public ProfileKeyedServiceFactory {};

#endif  // CHROME_BROWSER_READING_LIST_READING_LIST_MODEL_FACTORY_H_