blob: 948968ff717675c888afb1a0f80397d9d80e4565 [file] [log] [blame]
reillyg551eaa42015-11-11 01:29:211// 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
12class UsbChooserContext;
13class Profile;
14
15class UsbChooserContextFactory : public BrowserContextKeyedServiceFactory {
16 public:
17 static UsbChooserContext* GetForProfile(Profile* profile);
Andy Paicufa96c832021-06-24 16:17:1518 static UsbChooserContext* GetForProfileIfExists(Profile* profile);
reillyg551eaa42015-11-11 01:29:2119 static UsbChooserContextFactory* GetInstance();
20
21 private:
22 friend struct base::DefaultSingletonTraits<UsbChooserContextFactory>;
23
24 UsbChooserContextFactory();
25 ~UsbChooserContextFactory() override;
26
Henrique Nakashima97451242019-04-29 16:14:2827 // BrowserContextKeyedServiceFactory methods:
reillyg551eaa42015-11-11 01:29:2128 KeyedService* BuildServiceInstanceFor(
29 content::BrowserContext* profile) const override;
30 content::BrowserContext* GetBrowserContextToUse(
31 content::BrowserContext* context) const override;
Andy Paicufa96c832021-06-24 16:17:1532 void BrowserContextShutdown(content::BrowserContext* context) override;
reillyg551eaa42015-11-11 01:29:2133
34 DISALLOW_COPY_AND_ASSIGN(UsbChooserContextFactory);
35};
36
37#endif // CHROME_BROWSER_USB_USB_CHOOSER_CONTEXT_FACTORY_H_