Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1142)

Side by Side Diff: chrome/browser/captive_portal/captive_portal_service_factory.cc

Issue 242483003: Move CaptivePortalDetector to src/components/captive_portal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698