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
3 // found in the LICENSE file.
5 #include "chrome/browser/supervised_user/child_accounts/child_account_service_android.h"
7 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/profiles/profile_manager.h"
9 #include "chrome/browser/supervised_user/child_accounts/child_account_service.h"
10 #include "chrome/browser/supervised_user/child_accounts/child_account_service_factory.h"
11 #include "jni/ChildAccountService_jni.h"
15 bool g_is_child_account
= false;
16 bool g_has_child_account_status
= false;
20 jboolean
IsChildAccountDetectionEnabled(JNIEnv
* env
,
21 const JavaParamRef
<jobject
>& obj
) {
22 return ChildAccountService::IsChildAccountDetectionEnabled();
25 jboolean
GetIsChildAccount(JNIEnv
* env
, const JavaParamRef
<jobject
>& obj
) {
26 ProfileManager
* profile_manager
= g_browser_process
->profile_manager();
27 return profile_manager
->GetLastUsedProfile()->IsChild();
30 void SetIsChildAccount(JNIEnv
* env
,
31 const JavaParamRef
<jobject
>& obj
,
33 VLOG(1) << "OnChildAccountSigninComplete";
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
;
43 ProfileManager
* profile_manager
= g_browser_process
->profile_manager();
44 Profile
* profile
= profile_manager
->GetLastUsedProfile();
45 ChildAccountServiceFactory::GetForProfile(profile
)
46 ->SetIsChildAccount(is_child
);
49 bool GetJavaChildAccountStatus(bool* is_child_account
) {
50 if (!g_has_child_account_status
)
53 *is_child_account
= g_is_child_account
;
54 g_has_child_account_status
= false;
58 void ChildStatusInvalidationReceived() {
59 JNIEnv
* env
= base::android::AttachCurrentThread();
60 Java_ChildAccountService_onInvalidationReceived(env
);
63 bool RegisterChildAccountService(JNIEnv
* env
) {
64 return RegisterNativesImpl(env
);