| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 5 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
| 6 | 6 |
| 7 #include "chrome/browser/captive_portal/captive_portal_service.h" | 7 #include "chrome/browser/captive_portal/captive_portal_service.h" |
| 8 #include "chrome/browser/profiles/incognito_helpers.h" | 8 #include "chrome/browser/profiles/incognito_helpers.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 10 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 11 | 11 |
| 12 namespace captive_portal { | |
| 13 | |
| 14 // static | 12 // static |
| 15 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile( | 13 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile( |
| 16 Profile* profile) { | 14 Profile* profile) { |
| 17 return static_cast<CaptivePortalService*>( | 15 return static_cast<CaptivePortalService*>( |
| 18 GetInstance()->GetServiceForBrowserContext(profile, true)); | 16 GetInstance()->GetServiceForBrowserContext(profile, true)); |
| 19 } | 17 } |
| 20 | 18 |
| 21 // static | 19 // static |
| 22 CaptivePortalServiceFactory* CaptivePortalServiceFactory::GetInstance() { | 20 CaptivePortalServiceFactory* CaptivePortalServiceFactory::GetInstance() { |
| 23 return Singleton<CaptivePortalServiceFactory>::get(); | 21 return Singleton<CaptivePortalServiceFactory>::get(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 34 | 32 |
| 35 KeyedService* CaptivePortalServiceFactory::BuildServiceInstanceFor( | 33 KeyedService* CaptivePortalServiceFactory::BuildServiceInstanceFor( |
| 36 content::BrowserContext* profile) const { | 34 content::BrowserContext* profile) const { |
| 37 return new CaptivePortalService(static_cast<Profile*>(profile)); | 35 return new CaptivePortalService(static_cast<Profile*>(profile)); |
| 38 } | 36 } |
| 39 | 37 |
| 40 content::BrowserContext* CaptivePortalServiceFactory::GetBrowserContextToUse( | 38 content::BrowserContext* CaptivePortalServiceFactory::GetBrowserContextToUse( |
| 41 content::BrowserContext* context) const { | 39 content::BrowserContext* context) const { |
| 42 return chrome::GetBrowserContextOwnInstanceInIncognito(context); | 40 return chrome::GetBrowserContextOwnInstanceInIncognito(context); |
| 43 } | 41 } |
| 44 | |
| 45 } // namespace captive_portal | |
| OLD | NEW |