| 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 // static | 12 // static |
| 13 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile( | 13 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile( |
| 14 Profile* profile) { | 14 Profile* profile) { |
| 15 return static_cast<CaptivePortalService*>( | 15 return static_cast<CaptivePortalService*>( |
| 16 GetInstance()->GetServiceForBrowserContext(profile, true)); | 16 GetInstance()->GetServiceForBrowserContext(profile, true)); |
| 17 } | 17 } |
| 18 | 18 |
| 19 // static | 19 // static |
| 20 CaptivePortalServiceFactory* CaptivePortalServiceFactory::GetInstance() { | 20 CaptivePortalServiceFactory* CaptivePortalServiceFactory::GetInstance() { |
| 21 return Singleton<CaptivePortalServiceFactory>::get(); | 21 return base::Singleton<CaptivePortalServiceFactory>::get(); |
| 22 } | 22 } |
| 23 | 23 |
| 24 CaptivePortalServiceFactory::CaptivePortalServiceFactory() | 24 CaptivePortalServiceFactory::CaptivePortalServiceFactory() |
| 25 : BrowserContextKeyedServiceFactory( | 25 : BrowserContextKeyedServiceFactory( |
| 26 "CaptivePortalService", | 26 "CaptivePortalService", |
| 27 BrowserContextDependencyManager::GetInstance()) { | 27 BrowserContextDependencyManager::GetInstance()) { |
| 28 } | 28 } |
| 29 | 29 |
| 30 CaptivePortalServiceFactory::~CaptivePortalServiceFactory() { | 30 CaptivePortalServiceFactory::~CaptivePortalServiceFactory() { |
| 31 } | 31 } |
| 32 | 32 |
| 33 KeyedService* CaptivePortalServiceFactory::BuildServiceInstanceFor( | 33 KeyedService* CaptivePortalServiceFactory::BuildServiceInstanceFor( |
| 34 content::BrowserContext* profile) const { | 34 content::BrowserContext* profile) const { |
| 35 return new CaptivePortalService(static_cast<Profile*>(profile)); | 35 return new CaptivePortalService(static_cast<Profile*>(profile)); |
| 36 } | 36 } |
| 37 | 37 |
| 38 content::BrowserContext* CaptivePortalServiceFactory::GetBrowserContextToUse( | 38 content::BrowserContext* CaptivePortalServiceFactory::GetBrowserContextToUse( |
| 39 content::BrowserContext* context) const { | 39 content::BrowserContext* context) const { |
| 40 return chrome::GetBrowserContextOwnInstanceInIncognito(context); | 40 return chrome::GetBrowserContextOwnInstanceInIncognito(context); |
| 41 } | 41 } |
| OLD | NEW |