[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / captive_portal / captive_portal_service_factory.cc
blobb64f94488bfb7af494da2dcb4862666780b1ef15
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
3 // found in the LICENSE file.
5 #include "chrome/browser/captive_portal/captive_portal_service_factory.h"
7 #include "chrome/browser/captive_portal/captive_portal_service.h"
8 #include "chrome/browser/profiles/incognito_helpers.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 // static
13 CaptivePortalService* CaptivePortalServiceFactory::GetForProfile(
14 Profile* profile) {
15 return static_cast<CaptivePortalService*>(
16 GetInstance()->GetServiceForBrowserContext(profile, true));
19 // static
20 CaptivePortalServiceFactory* CaptivePortalServiceFactory::GetInstance() {
21 return Singleton<CaptivePortalServiceFactory>::get();
24 CaptivePortalServiceFactory::CaptivePortalServiceFactory()
25 : BrowserContextKeyedServiceFactory(
26 "CaptivePortalService",
27 BrowserContextDependencyManager::GetInstance()) {
30 CaptivePortalServiceFactory::~CaptivePortalServiceFactory() {
33 KeyedService* CaptivePortalServiceFactory::BuildServiceInstanceFor(
34 content::BrowserContext* profile) const {
35 return new CaptivePortalService(static_cast<Profile*>(profile));
38 content::BrowserContext* CaptivePortalServiceFactory::GetBrowserContextToUse(
39 content::BrowserContext* context) const {
40 return chrome::GetBrowserContextOwnInstanceInIncognito(context);