#ifndef CHROME_BROWSER_NEW_TAB_PAGE_NEW_TAB_PAGE_UTIL_H_
#define CHROME_BROWSER_NEW_TAB_PAGE_NEW_TAB_PAGE_UTIL_H_
#include "base/feature_list.h"
class Profile;
namespace variations {
class VariationsService;
}
bool IsCartModuleEnabled();
bool IsDriveModuleEnabled();
bool IsDriveModuleEnabledForProfile(bool is_managed_profile, Profile* profile);
bool IsEnUSLocaleOnlyFeatureEnabled(const base::Feature& ntp_feature);
bool IsFeatureEnabled(const base::Feature& feature);
bool IsFeatureForceEnabled(const base::Feature& feature);
bool IsGoogleCalendarModuleEnabled(bool is_managed_profile);
bool IsOutlookCalendarModuleEnabled(bool is_managed_profile);
std::string GetVariationsServiceCountryCode(
variations::VariationsService* variations_service);
void LogModuleEnablement(const base::Feature& feature,
bool enabled,
const std::string& reason);
#endif