| Index: content/browser/frame_host/navigation_handle_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_handle_impl.cc b/content/browser/frame_host/navigation_handle_impl.cc
|
| index 829ab711cf79ad10ed0b0030d9d537cae1c81b7d..4564a719b65f6e01f60c6005ac881d382ae1a49e 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.cc
|
| +++ b/content/browser/frame_host/navigation_handle_impl.cc
|
| @@ -13,6 +13,7 @@
|
| #include "content/browser/devtools/render_frame_devtools_agent_host.h"
|
| #include "content/browser/frame_host/debug_urls.h"
|
| #include "content/browser/frame_host/frame_tree_node.h"
|
| +#include "content/browser/frame_host/mixed_content_navigation_throttle.h"
|
| #include "content/browser/frame_host/navigator.h"
|
| #include "content/browser/frame_host/navigator_delegate.h"
|
| #include "content/browser/loader/resource_dispatcher_host_impl.h"
|
| @@ -768,6 +769,10 @@ void NavigationHandleImpl::RegisterNavigationThrottles() {
|
| // GetNavigationThrottles is not assigned to throttles_ directly because it
|
| // would overwrite any throttle previously added with
|
| // RegisterThrottleForTesting.
|
| + if (IsBrowserSideNavigationEnabled()) {
|
| + throttles_.insert(throttles_.end(),
|
| + new MixedContentNavigationThrottle(this));
|
| + }
|
| ScopedVector<NavigationThrottle> throttles_to_register =
|
| GetDelegate()->CreateThrottlesForNavigation(this);
|
| std::unique_ptr<NavigationThrottle> devtools_throttle =
|
|
|