blob: f55779e3e01d45f4c099f2bc34e1976f353f9200 [file] [log] [blame]
// Copyright 2025 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/default_browser/model/features.h"
BASE_FEATURE(kTailoredNonModalDBPromo, base::FEATURE_ENABLED_BY_DEFAULT);
bool IsTailoredNonModalDBPromoEnabled() {
return base::FeatureList::IsEnabled(kTailoredNonModalDBPromo);
}
BASE_FEATURE(kShareDefaultBrowserStatus, base::FEATURE_ENABLED_BY_DEFAULT);
bool IsShareDefaultBrowserStatusEnabled() {
return base::FeatureList::IsEnabled(kShareDefaultBrowserStatus);
}
BASE_FEATURE(kPersistentDefaultBrowserPromo, base::FEATURE_DISABLED_BY_DEFAULT);
bool IsPersistentDefaultBrowserPromoEnabled() {
return base::FeatureList::IsEnabled(kPersistentDefaultBrowserPromo);
}