Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / extensions / api / dial / dial_api_factory.h
blobf965126ac18dc0607325f3201c0c84ccadb52db0
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 {
13 class DialAPI;
15 class DialAPIFactory : public RefcountedBrowserContextKeyedServiceFactory {
16 public:
17 static scoped_refptr<DialAPI> GetForBrowserContext(
18 content::BrowserContext* context);
20 static DialAPIFactory* GetInstance();
22 private:
23 friend struct base::DefaultSingletonTraits<DialAPIFactory>;
25 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_