blob: 658b05d96721da358c56a5b54cb1e585f08388d0 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/supervised_user/model/supervised_user_capabilities.h"
#import "components/signin/public/identity_manager/identity_manager.h"
#import "components/signin/public/identity_manager/tribool.h"
#import "components/supervised_user/core/browser/family_link_user_capabilities.h"
#import "ios/chrome/browser/shared/model/profile/profile_ios.h"
#import "ios/chrome/browser/signin/model/identity_manager_factory.h"
namespace supervised_user {
bool IsSubjectToParentalControls(ProfileIOS* profile) {
CHECK(profile);
if (profile->IsOffTheRecord()) {
// An OTR profile cannot be under parental controls.
return false;
}
// If the capability is kUnknown, the profile should not be subjected
// to parental controls.
return IsPrimaryAccountSubjectToParentalControls(
IdentityManagerFactory::GetForProfile(profile)) ==
signin::Tribool::kTrue;
}
} // namespace supervised_user