| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_PRINTING_PRINTER_PREF_MANAGER_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_PREF_MANAGER_FACTORY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_PREF_MANAGER_FACTORY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_PREF_MANAGER_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 "chrome/browser/chromeos/printing/printer_pref_manager.h" | 10 #include "chrome/browser/chromeos/printing/printer_pref_manager.h" |
| 11 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 11 #include "components/keyed_service/content/browser_context_keyed_service_factory
.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 PrinterPrefManagerFactory : public BrowserContextKeyedServiceFactory { | 19 class PrinterPrefManagerFactory : public BrowserContextKeyedServiceFactory { |
| 20 public: | 20 public: |
| 21 static PrinterPrefManager* GetForBrowserContext( | 21 static PrinterPrefManager* GetForBrowserContext( |
| 22 content::BrowserContext* context); | 22 content::BrowserContext* context); |
| 23 | 23 |
| 24 static PrinterPrefManagerFactory* GetInstance(); | 24 static PrinterPrefManagerFactory* GetInstance(); |
| 25 | 25 |
| 26 protected: |
| 27 content::BrowserContext* GetBrowserContextToUse( |
| 28 content::BrowserContext* context) const override; |
| 29 |
| 26 private: | 30 private: |
| 27 friend struct base::DefaultLazyInstanceTraits<PrinterPrefManagerFactory>; | 31 friend struct base::DefaultLazyInstanceTraits<PrinterPrefManagerFactory>; |
| 28 | 32 |
| 29 PrinterPrefManagerFactory(); | 33 PrinterPrefManagerFactory(); |
| 30 ~PrinterPrefManagerFactory() override; | 34 ~PrinterPrefManagerFactory() override; |
| 31 | 35 |
| 32 // BrowserContextKeyedServiceFactory implementation: | 36 // BrowserContextKeyedServiceFactory implementation: |
| 33 PrinterPrefManager* BuildServiceInstanceFor( | 37 PrinterPrefManager* BuildServiceInstanceFor( |
| 34 content::BrowserContext* browser_context) const override; | 38 content::BrowserContext* browser_context) const override; |
| 35 | 39 |
| 36 DISALLOW_COPY_AND_ASSIGN(PrinterPrefManagerFactory); | 40 DISALLOW_COPY_AND_ASSIGN(PrinterPrefManagerFactory); |
| 37 }; | 41 }; |
| 38 | 42 |
| 39 } // namespace chromeos | 43 } // namespace chromeos |
| 40 | 44 |
| 41 #endif // CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_PREF_MANAGER_FACTORY_H_ | 45 #endif // CHROME_BROWSER_CHROMEOS_PRINTING_PRINTER_PREF_MANAGER_FACTORY_H_ |
| OLD | NEW |