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_EXTENSIONS_API_DIAL_DIAL_API_FACTORY_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DIAL_DIAL_API_FACTORY_H_
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/refcounted_browser_context_keyed_service_factory.h"
11 namespace extensions
{
15 class DialAPIFactory
: public RefcountedBrowserContextKeyedServiceFactory
{
17 static scoped_refptr
<DialAPI
> GetForBrowserContext(
18 content::BrowserContext
* context
);
20 static DialAPIFactory
* GetInstance();
23 friend struct base::DefaultSingletonTraits
<DialAPIFactory
>;
26 ~DialAPIFactory() override
;
28 // BrowserContextKeyedServiceFactory:
29 scoped_refptr
<RefcountedKeyedService
> BuildServiceInstanceFor(
30 content::BrowserContext
* profile
) const override
;
31 bool ServiceIsCreatedWithBrowserContext() const override
;
32 bool ServiceIsNULLWhileTesting() const override
;
34 DISALLOW_COPY_AND_ASSIGN(DialAPIFactory
);
37 } // namespace extensions
39 #endif // CHROME_BROWSER_EXTENSIONS_API_DIAL_DIAL_API_FACTORY_H_