| 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/policy/cloud/user_policy_signin_service_factory.h" | 5 #include "chrome/browser/policy/cloud/user_policy_signin_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h" | 10 #include "chrome/browser/policy/cloud/user_cloud_policy_manager_factory.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 // static | 46 // static |
| 47 UserPolicySigninService* UserPolicySigninServiceFactory::GetForProfile( | 47 UserPolicySigninService* UserPolicySigninServiceFactory::GetForProfile( |
| 48 Profile* profile) { | 48 Profile* profile) { |
| 49 return static_cast<UserPolicySigninService*>( | 49 return static_cast<UserPolicySigninService*>( |
| 50 GetInstance()->GetServiceForBrowserContext(profile, true)); | 50 GetInstance()->GetServiceForBrowserContext(profile, true)); |
| 51 } | 51 } |
| 52 | 52 |
| 53 // static | 53 // static |
| 54 UserPolicySigninServiceFactory* UserPolicySigninServiceFactory::GetInstance() { | 54 UserPolicySigninServiceFactory* UserPolicySigninServiceFactory::GetInstance() { |
| 55 return Singleton<UserPolicySigninServiceFactory>::get(); | 55 return base::Singleton<UserPolicySigninServiceFactory>::get(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 // static | 58 // static |
| 59 void UserPolicySigninServiceFactory::SetDeviceManagementServiceForTesting( | 59 void UserPolicySigninServiceFactory::SetDeviceManagementServiceForTesting( |
| 60 DeviceManagementService* device_management_service) { | 60 DeviceManagementService* device_management_service) { |
| 61 g_device_management_service = device_management_service; | 61 g_device_management_service = device_management_service; |
| 62 } | 62 } |
| 63 | 63 |
| 64 KeyedService* UserPolicySigninServiceFactory::BuildServiceInstanceFor( | 64 KeyedService* UserPolicySigninServiceFactory::BuildServiceInstanceFor( |
| 65 content::BrowserContext* context) const { | 65 content::BrowserContext* context) const { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 96 } | 96 } |
| 97 | 97 |
| 98 void UserPolicySigninServiceFactory::RegisterProfilePrefs( | 98 void UserPolicySigninServiceFactory::RegisterProfilePrefs( |
| 99 user_prefs::PrefRegistrySyncable* user_prefs) { | 99 user_prefs::PrefRegistrySyncable* user_prefs) { |
| 100 #if defined(OS_ANDROID) || defined(OS_IOS) | 100 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 101 user_prefs->RegisterInt64Pref(prefs::kLastPolicyCheckTime, 0); | 101 user_prefs->RegisterInt64Pref(prefs::kLastPolicyCheckTime, 0); |
| 102 #endif | 102 #endif |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace policy | 105 } // namespace policy |
| OLD | NEW |