Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: chrome/browser/chromeos/printer_detector/printer_detector_factory.h

Issue 2898833002: Allow the PrinterDetector to be constructed with a delegated profile. (Closed)
Patch Set: comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/printer_detector/printer_detector_factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_ 6 #define CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_
7 7
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
11 #include "extensions/browser/extension_system_provider.h" 11 #include "extensions/browser/extension_system_provider.h"
12 12
13 namespace content { 13 namespace content {
14 class BrowserContext; 14 class BrowserContext;
15 } 15 }
16 16
17 namespace chromeos { 17 namespace chromeos {
18 18
19 class PrinterDetector; 19 class PrinterDetector;
20 20
21 class PrinterDetectorFactory : public BrowserContextKeyedServiceFactory { 21 class PrinterDetectorFactory : public BrowserContextKeyedServiceFactory {
22 public: 22 public:
23 static PrinterDetectorFactory* GetInstance(); 23 static PrinterDetectorFactory* GetInstance();
24 24
25 PrinterDetector* Get(content::BrowserContext* context); 25 PrinterDetector* Get(content::BrowserContext* context);
26 26
27 protected:
28 // BrowserContextKeyedServiceFactory:
29 content::BrowserContext* GetBrowserContextToUse(
30 content::BrowserContext* context) const override;
31
27 private: 32 private:
28 friend struct base::LazyInstanceTraitsBase<PrinterDetectorFactory>; 33 friend struct base::LazyInstanceTraitsBase<PrinterDetectorFactory>;
29 PrinterDetectorFactory(); 34 PrinterDetectorFactory();
30 ~PrinterDetectorFactory() override; 35 ~PrinterDetectorFactory() override;
31 36
37 // BrowserContextKeyedServiceFactory:
32 KeyedService* BuildServiceInstanceFor( 38 KeyedService* BuildServiceInstanceFor(
33 content::BrowserContext* browser_context) const override; 39 content::BrowserContext* browser_context) const override;
34 bool ServiceIsCreatedWithBrowserContext() const override; 40 bool ServiceIsCreatedWithBrowserContext() const override;
35 bool ServiceIsNULLWhileTesting() const override; 41 bool ServiceIsNULLWhileTesting() const override;
36 42
37 DISALLOW_COPY_AND_ASSIGN(PrinterDetectorFactory); 43 DISALLOW_COPY_AND_ASSIGN(PrinterDetectorFactory);
38 }; 44 };
39 45
40 } // namespace chromeos 46 } // namespace chromeos
41 47
42 #endif // CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_ 48 #endif // CHROME_BROWSER_CHROMEOS_PRINTER_DETECTOR_PRINTER_DETECTOR_FACTORY_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/printer_detector/printer_detector_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698