Check USB device path access when prompting users to select a device.
[chromium-blink-merge.git] / chrome / browser / chromeos / launcher_search_provider / service_factory.h
blobd2dcbc7e753fda16efbbb362ec620ab27c37d253
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.
5 #ifndef CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_FACTORY_H_
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
10 #include "content/public/browser/browser_context.h"
12 namespace chromeos {
13 namespace launcher_search_provider {
15 class Service;
17 // Creates services per profile.
18 class ServiceFactory : public BrowserContextKeyedServiceFactory {
19 public:
20 // Returns a service instance singleton, after creating it (if necessary).
21 static Service* Get(content::BrowserContext* context);
23 // Gets a singleton instance of the factory.
24 static ServiceFactory* GetInstance();
26 private:
27 friend struct DefaultSingletonTraits<ServiceFactory>;
29 ServiceFactory();
30 ~ServiceFactory() override;
32 // BrowserContextKeyedServiceFactory overrides:
33 KeyedService* BuildServiceInstanceFor(
34 content::BrowserContext* profile) const override;
35 bool ServiceIsCreatedWithBrowserContext() const override;
37 DISALLOW_COPY_AND_ASSIGN(ServiceFactory);
40 } // namespace launcher_search_provider
41 } // namespace chromeos
43 #endif // CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_FACTORY_H_