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/profiles/profile_manager.h" | 7 #include "chrome/browser/profiles/profile_manager.h" |
8 #include "chrome/browser/supervised_user/child_accounts/child_account_service.h" | 8 #include "chrome/browser/supervised_user/child_accounts/child_account_service.h" |
9 #include "chrome/browser/supervised_user/child_accounts/child_account_service_fa
ctory.h" | 9 #include "chrome/browser/supervised_user/child_accounts/child_account_service_fa
ctory.h" |
10 #include "jni/ChildAccountService_jni.h" | 10 #include "jni/ChildAccountService_jni.h" |
11 | 11 |
| 12 jboolean IsChildAccountDetectionEnabled(JNIEnv* env, jobject obj) { |
| 13 return ChildAccountService::IsChildAccountDetectionEnabled(); |
| 14 } |
| 15 |
12 void OnChildAccountSigninComplete(JNIEnv* env, jobject obj) { | 16 void OnChildAccountSigninComplete(JNIEnv* env, jobject obj) { |
13 VLOG(1) << "OnChildAccountSigninComplete"; | 17 VLOG(1) << "OnChildAccountSigninComplete"; |
14 | 18 |
15 Profile* profile = ProfileManager::GetLastUsedProfile(); | 19 Profile* profile = ProfileManager::GetLastUsedProfile(); |
16 ChildAccountServiceFactory::GetForProfile(profile)->SetIsChildAccount(true); | 20 ChildAccountServiceFactory::GetForProfile(profile)->SetIsChildAccount(true); |
17 } | 21 } |
18 | 22 |
19 bool RegisterChildAccountService(JNIEnv* env) { | 23 bool RegisterChildAccountService(JNIEnv* env) { |
20 return RegisterNativesImpl(env); | 24 return RegisterNativesImpl(env); |
21 } | 25 } |
OLD | NEW |