| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ | 6 #define CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "base/prefs/pref_service.h" | |
| 11 #include "base/values.h" | 10 #include "base/values.h" |
| 12 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 11 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
| 12 #include "components/prefs/pref_service.h" |
| 13 | 13 |
| 14 class ChromeSSLHostStateDelegate; | 14 class ChromeSSLHostStateDelegate; |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 // Singleton that associates all ChromeSSLHostStateDelegates with | 17 // Singleton that associates all ChromeSSLHostStateDelegates with |
| 18 // Profiles. | 18 // Profiles. |
| 19 class ChromeSSLHostStateDelegateFactory | 19 class ChromeSSLHostStateDelegateFactory |
| 20 : public BrowserContextKeyedServiceFactory { | 20 : public BrowserContextKeyedServiceFactory { |
| 21 public: | 21 public: |
| 22 static ChromeSSLHostStateDelegate* GetForProfile(Profile* profile); | 22 static ChromeSSLHostStateDelegate* GetForProfile(Profile* profile); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 content::BrowserContext* profile) const override; | 34 content::BrowserContext* profile) const override; |
| 35 void RegisterProfilePrefs( | 35 void RegisterProfilePrefs( |
| 36 user_prefs::PrefRegistrySyncable* registry) override; | 36 user_prefs::PrefRegistrySyncable* registry) override; |
| 37 content::BrowserContext* GetBrowserContextToUse( | 37 content::BrowserContext* GetBrowserContextToUse( |
| 38 content::BrowserContext* context) const override; | 38 content::BrowserContext* context) const override; |
| 39 | 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(ChromeSSLHostStateDelegateFactory); | 40 DISALLOW_COPY_AND_ASSIGN(ChromeSSLHostStateDelegateFactory); |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 #endif // CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ | 43 #endif // CHROME_BROWSER_SSL_CHROME_SSL_HOST_STATE_DELEGATE_FACTORY_H_ |
| OLD | NEW |