reillyg | 551eaa4 | 2015-11-11 01:29:21 | [diff] [blame] | 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. |
| 4 | |
| 5 | #ifndef CHROME_BROWSER_USB_USB_CHOOSER_CONTEXT_FACTORY_H_ |
| 6 | #define CHROME_BROWSER_USB_USB_CHOOSER_CONTEXT_FACTORY_H_ |
| 7 | |
| 8 | #include "base/macros.h" |
| 9 | #include "base/memory/singleton.h" |
| 10 | #include "components/keyed_service/content/browser_context_keyed_service_factory.h" |
| 11 | |
| 12 | class UsbChooserContext; |
| 13 | class Profile; |
| 14 | |
| 15 | class UsbChooserContextFactory : public BrowserContextKeyedServiceFactory { |
| 16 | public: |
| 17 | static UsbChooserContext* GetForProfile(Profile* profile); |
Andy Paicu | fa96c83 | 2021-06-24 16:17:15 | [diff] [blame^] | 18 | static UsbChooserContext* GetForProfileIfExists(Profile* profile); |
reillyg | 551eaa4 | 2015-11-11 01:29:21 | [diff] [blame] | 19 | static UsbChooserContextFactory* GetInstance(); |
| 20 | |
| 21 | private: |
| 22 | friend struct base::DefaultSingletonTraits<UsbChooserContextFactory>; |
| 23 | |
| 24 | UsbChooserContextFactory(); |
| 25 | ~UsbChooserContextFactory() override; |
| 26 | |
Henrique Nakashima | 9745124 | 2019-04-29 16:14:28 | [diff] [blame] | 27 | // BrowserContextKeyedServiceFactory methods: |
reillyg | 551eaa4 | 2015-11-11 01:29:21 | [diff] [blame] | 28 | KeyedService* BuildServiceInstanceFor( |
| 29 | content::BrowserContext* profile) const override; |
| 30 | content::BrowserContext* GetBrowserContextToUse( |
| 31 | content::BrowserContext* context) const override; |
Andy Paicu | fa96c83 | 2021-06-24 16:17:15 | [diff] [blame^] | 32 | void BrowserContextShutdown(content::BrowserContext* context) override; |
reillyg | 551eaa4 | 2015-11-11 01:29:21 | [diff] [blame] | 33 | |
| 34 | DISALLOW_COPY_AND_ASSIGN(UsbChooserContextFactory); |
| 35 | }; |
| 36 | |
| 37 | #endif // CHROME_BROWSER_USB_USB_CHOOSER_CONTEXT_FACTORY_H_ |