blob: 810580493434c62a51f69f47f17a6fa8d6e2777c [file] [log] [blame]
// Copyright 2021 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/safe_browsing/features.h"
#import "base/feature_list.h"
#import "base/ios/ios_util.h"
#import "components/password_manager/core/common/password_manager_features.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
bool IsPasswordReuseDetectionEnabled() {
return base::FeatureList::IsEnabled(
password_manager::features::kPasswordReuseDetectionEnabled);
}