Skip to content

Commit b49202f

Browse files
committed
Adjust skus sdk/vpn features state
Made skus sdk enabled by default and vpn feature available on beta. Fixes brave/brave-browser#21598
1 parent d8dbd36 commit b49202f

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

chromium_src/chrome/browser/unexpire_flags.cc

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ bool IsFlagExpired(const flags_ui::FlagsStorage* storage,
2121
version_info::Channel channel = chrome::GetChannel();
2222
// Enable VPN feature only for nightly/development.
2323
if (base::LowerCaseEqualsASCII(kBraveVPNFeatureInternalName, internal_name) &&
24-
(channel == version_info::Channel::STABLE ||
25-
channel == version_info::Channel::BETA)) {
24+
channel == version_info::Channel::STABLE) {
2625
return true;
2726
}
2827
#endif

components/skus/common/features.cc

+2-8
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,8 @@
1111
namespace skus {
1212
namespace features {
1313

14-
const base::Feature kSkusFeature {
15-
"SkusFeature",
16-
#if BUILDFLAG(IS_IOS)
17-
base::FEATURE_ENABLED_BY_DEFAULT
18-
#else
19-
base::FEATURE_DISABLED_BY_DEFAULT
20-
#endif
21-
};
14+
const base::Feature kSkusFeature{"SkusFeature",
15+
base::FEATURE_ENABLED_BY_DEFAULT};
2216

2317
} // namespace features
2418
} // namespace skus

0 commit comments

Comments
 (0)