blob: 85efc89b9a0dc2b5e6a47b314a2e174a6b874da1 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_MANTA_FEATURES_H_
#define COMPONENTS_MANTA_FEATURES_H_
#include "base/component_export.h"
#include "base/feature_list.h"
namespace manta::features {
COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kAnchovyUseProdServer);
COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kOrcaUseProdServer);
COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kSeaPenUseProdServer);
COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kWalrusUseProdServer);
COMPONENT_EXPORT(MANTA) bool IsAnchovyUseProdServerEnabled();
COMPONENT_EXPORT(MANTA) bool IsOrcaUseProdServerEnabled();
COMPONENT_EXPORT(MANTA) bool IsScannerUseProdServerEnabled();
COMPONENT_EXPORT(MANTA) bool IsSeaPenUseProdServerEnabled();
COMPONENT_EXPORT(MANTA) bool IsMahiUseProdServerEnabled();
COMPONENT_EXPORT(MANTA) bool IsWalrusUseProdServerEnabled();
} // namespace manta::features
#endif // COMPONENTS_MANTA_FEATURES_H_