blob: 86447b1b9d500bb82f9466d7d7685cbe4afb4212 [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
Jeffrey Young01725a3d2023-10-02 17:31:2319COMPONENT_EXPORT(MANTA) bool IsMantaServiceEnabled();
20
Chuong Hobcc5f5b2024-01-09 06:48:0321COMPONENT_EXPORT(MANTA) bool IsOrcaUseProdServerEnabled();
22
Jeffrey Young01725a3d2023-10-02 17:31:2323} // namespace manta::features
24
25#endif // COMPONENTS_MANTA_FEATURES_H_