| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/supervised_user/child_accounts/child_account_service_an
droid.h" | 5 #include "chrome/browser/supervised_user/child_accounts/child_account_service_an
droid.h" |
| 6 | 6 |
| 7 #include "chrome/browser/browser_process.h" | 7 #include "chrome/browser/browser_process.h" |
| 8 #include "chrome/browser/profiles/profile_manager.h" | 8 #include "chrome/browser/profiles/profile_manager.h" |
| 9 #include "chrome/browser/supervised_user/child_accounts/child_account_service.h" | 9 #include "chrome/browser/supervised_user/child_accounts/child_account_service.h" |
| 10 #include "chrome/browser/supervised_user/child_accounts/child_account_service_fa
ctory.h" |
| 10 #include "jni/ChildAccountService_jni.h" | 11 #include "jni/ChildAccountService_jni.h" |
| 11 | 12 |
| 13 namespace { |
| 14 |
| 15 bool g_is_child_account = false; |
| 16 bool g_has_child_account_status = false; |
| 17 |
| 18 } // namespace |
| 19 |
| 12 jboolean IsChildAccountDetectionEnabled(JNIEnv* env, | 20 jboolean IsChildAccountDetectionEnabled(JNIEnv* env, |
| 13 const JavaParamRef<jclass>& jcaller) { | 21 const JavaParamRef<jobject>& obj) { |
| 14 return ChildAccountService::IsChildAccountDetectionEnabled(); | 22 return ChildAccountService::IsChildAccountDetectionEnabled(); |
| 15 } | 23 } |
| 16 | 24 |
| 17 jboolean IsChildAccount(JNIEnv* env, const JavaParamRef<jclass>& jcaller) { | 25 jboolean GetIsChildAccount(JNIEnv* env, const JavaParamRef<jobject>& obj) { |
| 18 ProfileManager* profile_manager = g_browser_process->profile_manager(); | 26 ProfileManager* profile_manager = g_browser_process->profile_manager(); |
| 19 return profile_manager->GetLastUsedProfile()->IsChild(); | 27 return profile_manager->GetLastUsedProfile()->IsChild(); |
| 20 } | 28 } |
| 21 | 29 |
| 30 void SetIsChildAccount(JNIEnv* env, |
| 31 const JavaParamRef<jobject>& obj, |
| 32 jboolean is_child) { |
| 33 VLOG(1) << "OnChildAccountSigninComplete"; |
| 34 |
| 35 // If the browser process has not been created yet, store the child account |
| 36 // status and return it later in GetJavaChildAccountStatus(). |
| 37 if (!g_browser_process) { |
| 38 g_has_child_account_status = true; |
| 39 g_is_child_account = is_child; |
| 40 return; |
| 41 } |
| 42 |
| 43 ProfileManager* profile_manager = g_browser_process->profile_manager(); |
| 44 Profile* profile = profile_manager->GetLastUsedProfile(); |
| 45 ChildAccountServiceFactory::GetForProfile(profile) |
| 46 ->SetIsChildAccount(is_child); |
| 47 } |
| 48 |
| 49 bool GetJavaChildAccountStatus(bool* is_child_account) { |
| 50 if (!g_has_child_account_status) |
| 51 return false; |
| 52 |
| 53 *is_child_account = g_is_child_account; |
| 54 g_has_child_account_status = false; |
| 55 return true; |
| 56 } |
| 57 |
| 58 void ChildStatusInvalidationReceived() { |
| 59 JNIEnv* env = base::android::AttachCurrentThread(); |
| 60 Java_ChildAccountService_onInvalidationReceived(env); |
| 61 } |
| 62 |
| 22 bool RegisterChildAccountService(JNIEnv* env) { | 63 bool RegisterChildAccountService(JNIEnv* env) { |
| 23 return RegisterNativesImpl(env); | 64 return RegisterNativesImpl(env); |
| 24 } | 65 } |
| OLD | NEW |