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
  • Loading branch information
jumde committed Mar 23, 2019
1 parent bb924bf commit 97f68a4
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 97f68a4

Please sign in to comment.