editor: add a flag to switch between prod and autopush server

This CL switches to use prod server by default. Editor previously
uses autopush server.

Bug: b:318610628
Change-Id: I3099bfe932672d5318a552861ed310c0fe80a65a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5174898
Reviewed-by: Chuong Ho <[email protected]>
Reviewed-by: Xinglong Luan <[email protected]>
Reviewed-by: Mehrab N <[email protected]>
Commit-Queue: Chuong Ho <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1244489}
diff --git a/components/manta/features.h b/components/manta/features.h
index 0b8d9d2..86447b1 100644
--- a/components/manta/features.h
+++ b/components/manta/features.h
@@ -14,8 +14,12 @@
 // the google chrome Manta project.
 COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kMantaService);
 
+COMPONENT_EXPORT(MANTA) BASE_DECLARE_FEATURE(kOrcaUseProdServer);
+
 COMPONENT_EXPORT(MANTA) bool IsMantaServiceEnabled();
 
+COMPONENT_EXPORT(MANTA) bool IsOrcaUseProdServerEnabled();
+
 }  // namespace manta::features
 
 #endif  // COMPONENTS_MANTA_FEATURES_H_