| Index: content/browser/frame_host/navigation_request.cc
|
| diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc
|
| index 11e987c4ada6ba868054f0f6445ecd8bc0bc3ff8..c7345dc79016976fa9d880719e2e483b790d03a1 100644
|
| --- a/content/browser/frame_host/navigation_request.cc
|
| +++ b/content/browser/frame_host/navigation_request.cc
|
| @@ -22,6 +22,7 @@
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/navigation_controller.h"
|
| #include "content/public/browser/navigation_data.h"
|
| +#include "content/public/browser/navigation_ui_data.h"
|
| #include "content/public/browser/storage_partition.h"
|
| #include "content/public/browser/stream_handle.h"
|
| #include "content/public/common/content_client.h"
|
| @@ -457,6 +458,10 @@ void NavigationRequest::OnStartChecksComplete(
|
| ? false
|
| : frame_tree_node_->parent()->IsMainFrame();
|
|
|
| + std::unique_ptr<NavigationUIData> navigation_ui_data;
|
| + if (navigation_handle_->navigation_ui_data())
|
| + navigation_ui_data = navigation_handle_->navigation_ui_data()->Clone();
|
| +
|
| loader_ = NavigationURLLoader::Create(
|
| frame_tree_node_->navigator()->GetController()->GetBrowserContext(),
|
| base::MakeUnique<NavigationRequestInfo>(
|
| @@ -464,6 +469,7 @@ void NavigationRequest::OnStartChecksComplete(
|
| frame_tree_node_->current_origin(), frame_tree_node_->IsMainFrame(),
|
| parent_is_main_frame, IsSecureFrame(frame_tree_node_->parent()),
|
| frame_tree_node_->frame_tree_node_id()),
|
| + std::move(navigation_ui_data),
|
| navigation_handle_->service_worker_handle(), this);
|
| }
|
|
|
|
|