chromium/components/commerce/core/feature_utils.cc

// 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.

#include "components/commerce/core/feature_utils.h"

#include "components/commerce/core/account_checker.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/commerce/core/pref_names.h"
#include "components/commerce/core/product_specifications/product_specifications_service.h"
#include "components/optimization_guide/core/feature_registry/feature_registration.h"
#include "components/prefs/pref_service.h"
#include "components/sync/base/data_type.h"
#include "components/sync/base/user_selectable_type.h"

namespace commerce {

bool IsShoppingListEligible(AccountChecker* account_checker) {}

bool IsProductSpecificationsAllowedForEnterprise(PrefService* prefs) {}

bool IsProductSpecificationsQualityLoggingAllowed(PrefService* prefs) {}

bool IsSyncingProductSpecifications(AccountChecker* account_checker) {}

bool CanLoadProductSpecificationsFullPageUi(AccountChecker* account_checker) {}

bool CanManageProductSpecificationsSets(
    AccountChecker* account_checker,
    ProductSpecificationsService* product_spec_service) {}

bool CanFetchProductSpecificationsData(AccountChecker* account_checker) {}

}  // namespace commerce