Skip to content

Commit

Permalink
fix: flash plugin (#22110)
Browse files Browse the repository at this point in the history
* fix: flash plugin

Fixes #20744

* cleanup

* fix linting issue

Co-authored-by: t57ser <seve@live.at>
  • Loading branch information
trop[bot] and t57ser committed Feb 10, 2020
1 parent 72bccd1 commit d4f915e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions shell/browser/net/system_network_context_manager.cc
Expand Up @@ -11,6 +11,7 @@
#include "chrome/browser/browser_process.h"
#include "chrome/browser/net/chrome_mojo_proxy_resolver_factory.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/cors_exempt_headers.h"
#include "content/public/browser/network_service_instance.h"
#include "content/public/common/content_features.h"
#include "content/public/common/service_names.mojom.h"
Expand Down Expand Up @@ -154,6 +155,10 @@ SystemNetworkContextManager::CreateDefaultNetworkContextParams() {
network::mojom::NetworkContextParamsPtr network_context_params =
network::mojom::NetworkContextParams::New();

// This is required to avoid blocking X-Requested-With headers sent by PPAPI
// plugins, more info crbug.com/940331
content::UpdateCorsExemptHeader(network_context_params.get());

network_context_params->enable_brotli = true;

network_context_params->enable_referrers = true;
Expand Down

0 comments on commit d4f915e

Please sign in to comment.