| // 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/model/features.h" | |
| #import "base/feature_list.h" | |
| #import "base/ios/ios_util.h" | |
| #import "components/password_manager/core/common/password_manager_features.h" | |
| bool IsPasswordReuseDetectionEnabled() { | |
| return base::FeatureList::IsEnabled( | |
| password_manager::features::kPasswordReuseDetectionEnabled); | |
| } |