Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: chrome/browser/supervised_user/child_accounts/child_account_service_android.cc

Issue 986303002: Re-enable child account detection, now behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enum -> int Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« no previous file with comments | « chrome/browser/supervised_user/child_accounts/child_account_service.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698