Skip to content

Commit

Permalink
Enable BraveVPN and BraveVPNLinkSubscriptionAndroidUI by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bsclifton committed Apr 12, 2023
1 parent d6339cd commit ca9bc14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/brave_vpn/common/brave_vpn_utils_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ TEST(BraveVPNUtilsUnitTest, IsBraveVPNEnabled) {
}

TEST(BraveVPNUtilsUnitTest, FeatureTest) {
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
#if !BUILDFLAG(IS_LINUX)
EXPECT_TRUE(brave_vpn::IsBraveVPNFeatureEnabled());
#else
EXPECT_FALSE(brave_vpn::IsBraveVPNFeatureEnabled());
Expand Down
4 changes: 2 additions & 2 deletions components/brave_vpn/common/features.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace features {

BASE_FEATURE(kBraveVPN,
"BraveVPN",
#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS)
#if !BUILDFLAG(IS_LINUX)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
Expand All @@ -23,7 +23,7 @@ BASE_FEATURE(kBraveVPN,

BASE_FEATURE(kBraveVPNLinkSubscriptionAndroidUI,
"BraveVPNLinkSubscriptionAndroidUI",
base::FEATURE_DISABLED_BY_DEFAULT);
base::FEATURE_ENABLED_BY_DEFAULT);

#if BUILDFLAG(IS_WIN)
BASE_FEATURE(kBraveVPNDnsProtection,
Expand Down

0 comments on commit ca9bc14

Please sign in to comment.