Skip to content

Commit

Permalink
Issue 3025: Add a buildflag/runtime switch to disable STP by default
Browse files Browse the repository at this point in the history
STP can cause webompat issues, gating this feature behind off-by-default
runtime flag till the feature is thoroughly tested for webcompat.

The switches are available here:
https://github.com/brave/brave-core/pull/403/files

auditors: @bridiver, @bsclifton, @iefremov
  • Loading branch information
jumde committed Apr 17, 2019
1 parent 092330f commit a50332d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ const start = (passthroughArgs, buildConfig = config.defaultBuildConfig, options
// This only has meaning with MacOS and official build.
braveArgs.push('--disable-brave-update')
}
if (options.enable_smart_tracking_protection) {
braveArgs.push('--enable-smart-tracking-protection')
}
if (options.single_process) {
braveArgs.push('--single-process')
}
Expand Down

0 comments on commit a50332d

Please sign in to comment.