Files
cromite/build/patches/Keep-Manta-Service-Disabled.patch
2024-02-18 14:35:58 +01:00

27 lines
795 B
Diff

From: Your Name <you@example.com>
Date: Tue, 31 Oct 2023 16:20:12 +0000
Subject: Keep Manta Service Disabled
---
components/manta/features.cc | 2 ++
1 file changed, 2 insertions(+)
diff --git a/components/manta/features.cc b/components/manta/features.cc
--- a/components/manta/features.cc
+++ b/components/manta/features.cc
@@ -9,11 +9,13 @@
namespace manta::features {
BASE_FEATURE(kMantaService, "MantaService", base::FEATURE_ENABLED_BY_DEFAULT);
+SET_CROMITE_FEATURE_DISABLED(kMantaService);
// Enables Orca Prod Server
BASE_FEATURE(kOrcaUseProdServer,
"OrcaUseProdServer",
base::FEATURE_ENABLED_BY_DEFAULT);
+SET_CROMITE_FEATURE_DISABLED(kOrcaUseProdServer);
bool IsMantaServiceEnabled() {
return base::FeatureList::IsEnabled(kMantaService);
--