blob: 1d36d741bd873ba568265b9ba8b58b39f4b9aea1 [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/shared/public/features/features_utils.h"
#import "base/feature_list.h"
#import "ios/chrome/browser/shared/public/features/features.h"
#import "ios/public/provider/chrome/browser/raccoon/raccoon_api.h"
bool IsModernTabStripOrRaccoonEnabled() {
return base::FeatureList::IsEnabled(kModernTabStrip) ||
ios::provider::IsRaccoonEnabled();
}