blob: 7c375f61cf8c8cdf3ec0a228b4790f597eed2f1c [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/policy/policy_util.h"
#include "components/prefs/pref_service.h"
#include "ios/chrome/browser/policy/policy_features.h"
#include "ios/chrome/browser/pref_names.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
bool IsIncognitoPolicyApplied(PrefService* pref_service) {
if (!pref_service)
return NO;
return IsEnterprisePolicyEnabled() &&
pref_service->IsManagedPreference(prefs::kIncognitoModeAvailability);
}
bool IsIncognitoModeDisabled(PrefService* pref_service) {
return IsIncognitoPolicyApplied(pref_service) &&
pref_service->GetInteger(prefs::kIncognitoModeAvailability) ==
static_cast<int>(IncognitoModePrefs::kDisabled);
}
bool IsIncognitoModeForced(PrefService* pref_service) {
return IsIncognitoPolicyApplied(pref_service) &&
pref_service->GetInteger(prefs::kIncognitoModeAvailability) ==
static_cast<int>(IncognitoModePrefs::kForced);
}