1 // Copyright (c) 2012 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_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_FACTORY_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
13 class TemplateURLService
;
15 // Singleton that owns all TemplateURLService and associates them with
17 class TemplateURLServiceFactory
: public BrowserContextKeyedServiceFactory
{
19 static TemplateURLService
* GetForProfile(Profile
* profile
);
21 static TemplateURLServiceFactory
* GetInstance();
23 static scoped_ptr
<KeyedService
> BuildInstanceFor(
24 content::BrowserContext
* profile
);
27 friend struct base::DefaultSingletonTraits
<TemplateURLServiceFactory
>;
29 TemplateURLServiceFactory();
30 ~TemplateURLServiceFactory() override
;
32 // BrowserContextKeyedServiceFactory:
33 KeyedService
* BuildServiceInstanceFor(
34 content::BrowserContext
* profile
) const override
;
35 void RegisterProfilePrefs(
36 user_prefs::PrefRegistrySyncable
* registry
) override
;
37 content::BrowserContext
* GetBrowserContextToUse(
38 content::BrowserContext
* context
) const override
;
39 bool ServiceIsNULLWhileTesting() const override
;
42 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_SERVICE_FACTORY_H_