1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_
6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_
8 #include "base/macros.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
12 struct DefaultSingletonTraits
;
14 namespace offline_pages
{
16 class OfflinePageModel
;
18 // A factory to create one unique OfflinePageModel.
19 class OfflinePageModelFactory
: public BrowserContextKeyedServiceFactory
{
21 static OfflinePageModelFactory
* GetInstance();
22 static OfflinePageModel
* GetForBrowserContext(
23 content::BrowserContext
* context
);
26 friend struct DefaultSingletonTraits
<OfflinePageModelFactory
>;
28 OfflinePageModelFactory();
29 ~OfflinePageModelFactory() override
{}
31 KeyedService
* BuildServiceInstanceFor(
32 content::BrowserContext
* context
) const override
;
34 content::BrowserContext
* GetBrowserContextToUse(
35 content::BrowserContext
* context
) const override
;
37 DISALLOW_COPY_AND_ASSIGN(OfflinePageModelFactory
);
40 } // namespace offline_pages
42 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_