Bug 1818058 - Enable TCP by default for all releases

TCP will still be controllable through Nimbus but by default it will be enabled
now on all releases.
fenix/112.0
Mugurell 1 year ago committed by mergify[bot]
parent ca4cf21be7
commit bd63c041d8

@ -702,13 +702,13 @@ class Settings(private val appContext: Context) : PreferencesHolder {
)
val enabledTotalCookieProtection: Boolean
get() = Config.channel.isNightlyOrDebug || mr2022Sections[Mr2022Section.TCP_FEATURE] == true
get() = mr2022Sections[Mr2022Section.TCP_FEATURE] == true
/**
* Indicates if the total cookie protection CRF feature is enabled.
*/
val enabledTotalCookieProtectionCFR: Boolean
get() = Config.channel.isNightlyOrDebug || mr2022Sections[Mr2022Section.TCP_CFR] == true
get() = mr2022Sections[Mr2022Section.TCP_CFR] == true
/**
* Indicates if the total cookie protection CRF should be shown.

@ -81,8 +81,8 @@ features:
"sync-cfr": true,
"wallpapers-selection-tool": true,
"jump-back-in-cfr": true,
"tcp-cfr": false,
"tcp-feature": false,
"tcp-cfr": true,
"tcp-feature": true,
}
defaults:
- channel: developer

Loading…
Cancel
Save