blob: e51b1a2a6df56ebfdfc8011b93d073f5d3c7bb35 [file] [log] [blame]
Jeffrey Young01725a3d2023-10-02 17:31:231// Copyright 2023 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_MANTA_FEATURES_H_
6#define COMPONENTS_MANTA_FEATURES_H_
7
8#include "base/component_export.h"
9#include "base/feature_list.h"
10
11namespace manta::features {
12
13// This flag is used for enabling the Manta Service, a profile keyed service for
14// the google chrome Manta project.
15COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kMantaService);
16
Chuong Hobcc5f5b2024-01-09 06:48:0317COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kOrcaUseProdServer);
18
Guoxing Zhao3c3a38d2024-03-22 06:29:5619COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kSeaPenUseProdServer);
20
Jeffrey Young01725a3d2023-10-02 17:31:2321COMPONENT_EXPORT(MANTA) bool IsMantaServiceEnabled();
22
Chuong Hobcc5f5b2024-01-09 06:48:0323COMPONENT_EXPORT(MANTA) bool IsOrcaUseProdServerEnabled();
24
Guoxing Zhao3c3a38d2024-03-22 06:29:5625COMPONENT_EXPORT(MANTA) bool IsSeaPenUseProdServerEnabled();
26
Jeffrey Young01725a3d2023-10-02 17:31:2327} // namespace manta::features
28
29#endif // COMPONENTS_MANTA_FEATURES_H_