Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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. | |
| 4 | |
| 5 #include "chrome/browser/signin/cross_device_promo_factory.h" | |
| 6 | |
| 7 #include "base/prefs/pref_service.h" | |
| 8 #include "chrome/browser/prefs/pref_service_syncable.h" | |
| 9 #include "chrome/browser/profiles/profile.h" | |
| 10 #include "chrome/browser/signin/chrome_signin_client_factory.h" | |
| 11 #include "chrome/browser/signin/cross_device_promo.h" | |
| 12 #include "chrome/browser/signin/gaia_cookie_manager_service_factory.h" | |
| 13 #include "chrome/browser/signin/signin_manager_factory.h" | |
| 14 #include "chrome/common/pref_names.h" | |
| 15 #include "components/keyed_service/content/browser_context_dependency_manager.h" | |
| 16 #include "components/pref_registry/pref_registry_syncable.h" | |
| 17 #include "components/signin/core/browser/signin_manager.h" | |
| 18 #include "google_apis/gaia/gaia_constants.h" | |
| 19 | |
| 20 CrossDevicePromoFactory::CrossDevicePromoFactory() | |
| 21 : BrowserContextKeyedServiceFactory( | |
| 22 "CrossDevicePromo", | |
| 23 BrowserContextDependencyManager::GetInstance()) { | |
| 24 DependsOn(ChromeSigninClientFactory::GetInstance()); | |
| 25 DependsOn(GaiaCookieManagerServiceFactory::GetInstance()); | |
| 26 DependsOn(SigninManagerFactory::GetInstance()); | |
| 27 } | |
| 28 | |
| 29 CrossDevicePromoFactory::~CrossDevicePromoFactory() {} | |
| 30 | |
| 31 // static | |
| 32 CrossDevicePromo* CrossDevicePromoFactory::GetForProfile(Profile* profile) { | |
| 33 return static_cast<CrossDevicePromo*>( | |
| 34 GetInstance()->GetServiceForBrowserContext(profile, true)); | |
| 35 } | |
| 36 | |
| 37 // static | |
| 38 CrossDevicePromoFactory* CrossDevicePromoFactory::GetInstance() { | |
| 39 return Singleton<CrossDevicePromoFactory>::get(); | |
| 40 } | |
| 41 | |
| 42 void CrossDevicePromoFactory::RegisterProfilePrefs( | |
| 43 user_prefs::PrefRegistrySyncable* user_prefs) { | |
| 44 #if !defined(OS_CHROMEOS) && !defined(OS_IOS) && !defined(OS_ANDROID) | |
| 45 user_prefs->RegisterBooleanPref(prefs::kCrossDevicePromoOptedOut, false); | |
| 46 user_prefs->RegisterBooleanPref(prefs::kCrossDevicePromoActive, false); | |
| 47 user_prefs->RegisterInt64Pref( | |
| 48 prefs::kCrossDevicePromoObservedSingleAccountCookie, | |
| 49 base::Time::Time().ToInternalValue()); | |
| 50 user_prefs->RegisterInt64Pref( | |
| 51 prefs::kCrossDevicePromoNextFetchListDevicesTime, | |
| 52 base::Time::Time().ToInternalValue()); | |
| 53 user_prefs->RegisterIntegerPref(prefs::kCrossDevicePromoNumDevices, 0); | |
| 54 user_prefs->RegisterInt64Pref(prefs::kCrossDevicePromoLastDeviceActiveTime, | |
| 55 base::Time::Time().ToInternalValue()); | |
| 56 #endif | |
| 57 } | |
| 58 | |
| 59 KeyedService* CrossDevicePromoFactory::BuildServiceInstanceFor( | |
| 60 content::BrowserContext* context) const { | |
| 61 #if !defined(OS_CHROMEOS) && !defined(OS_IOS) && !defined(OS_ANDROID) | |
|
anthonyvd
2015/05/14 18:24:20
In the ProfileManager, the call to CrossDeviceProm
Mike Lerman
2015/05/14 20:25:33
That profilemanager call is within a larger !defin
| |
| 62 Profile* profile = Profile::FromBrowserContext(context); | |
| 63 CrossDevicePromo* service = new CrossDevicePromo( | |
| 64 SigninManagerFactory::GetForProfile(profile), | |
| 65 GaiaCookieManagerServiceFactory::GetForProfile(profile), | |
| 66 ChromeSigninClientFactory::GetForProfile(profile), | |
| 67 profile->GetPrefs()); | |
| 68 return service; | |
| 69 #else | |
| 70 return nullptr; | |
| 71 #endif | |
| 72 } | |
| OLD | NEW |