feat: accept-encoding zstd (#43300)
* fix: accept-encoding zstd Co-authored-by: Charles Kerr <charles@charleskerr.com> * Update shell/browser/net/system_network_context_manager.cc Co-authored-by: Sam Maddock <smaddock@slack-corp.com> Co-authored-by: Charles Kerr <charles@charleskerr.com> * chore: make lint happy Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
parent
588856ed27
commit
7123b313cf
1 changed files with 2 additions and 0 deletions
|
@ -198,6 +198,8 @@ SystemNetworkContextManager::CreateDefaultNetworkContextParams() {
|
|||
void SystemNetworkContextManager::ConfigureDefaultNetworkContextParams(
|
||||
network::mojom::NetworkContextParams* network_context_params) {
|
||||
network_context_params->enable_brotli = true;
|
||||
network_context_params->enable_zstd =
|
||||
base::FeatureList::IsEnabled(net::features::kZstdContentEncoding);
|
||||
|
||||
network_context_params->enable_referrers = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue