cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / browser / ui / webui / signin / login_ui_service_factory.cc
blobb23a4207bdbcfd0704a0676259de97b2523ef44f
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/ui/webui/signin/login_ui_service_factory.h"
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/prefs/pref_service.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/ui/webui/signin/login_ui_service.h"
12 #include "components/keyed_service/content/browser_context_dependency_manager.h"
13 #include "components/signin/core/browser/signin_manager.h"
15 LoginUIServiceFactory::LoginUIServiceFactory()
16 : BrowserContextKeyedServiceFactory(
17 "LoginUIServiceFactory",
18 BrowserContextDependencyManager::GetInstance()) {
21 LoginUIServiceFactory::~LoginUIServiceFactory() {}
23 // static
24 LoginUIService* LoginUIServiceFactory::GetForProfile(Profile* profile) {
25 return static_cast<LoginUIService*>(
26 GetInstance()->GetServiceForBrowserContext(profile, true));
29 // static
30 LoginUIServiceFactory* LoginUIServiceFactory::GetInstance() {
31 return Singleton<LoginUIServiceFactory>::get();
34 // static
35 base::Closure LoginUIServiceFactory::GetShowLoginPopupCallbackForProfile(
36 Profile* profile) {
37 return base::Bind(
38 &LoginUIService::ShowLoginPopup,
39 base::Unretained(LoginUIServiceFactory::GetForProfile(profile)));
42 KeyedService* LoginUIServiceFactory::BuildServiceInstanceFor(
43 content::BrowserContext* profile) const {
44 return new LoginUIService(static_cast<Profile*>(profile));