| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 44334dea3167a5799caeb140e8922cae6042e5f5..9d229df9a71e714944f73e12701e9e7c4c26a21b 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -24,7 +24,6 @@
|
| #include "content/browser/devtools/render_frame_devtools_agent_host.h"
|
| #include "content/browser/download/mhtml_generation_manager.h"
|
| #include "content/browser/frame_host/cross_process_frame_connector.h"
|
| -#include "content/browser/frame_host/cross_site_transferring_request.h"
|
| #include "content/browser/frame_host/frame_tree.h"
|
| #include "content/browser/frame_host/frame_tree_node.h"
|
| #include "content/browser/frame_host/navigation_entry_impl.h"
|
| @@ -1263,8 +1262,6 @@ int RenderFrameHostImpl::GetEnabledBindings() {
|
| void RenderFrameHostImpl::SetNavigationHandle(
|
| std::unique_ptr<NavigationHandleImpl> navigation_handle) {
|
| navigation_handle_ = std::move(navigation_handle);
|
| - if (navigation_handle_)
|
| - navigation_handle_->set_render_frame_host(this);
|
| }
|
|
|
| std::unique_ptr<NavigationHandleImpl>
|
| @@ -1275,20 +1272,6 @@ RenderFrameHostImpl::PassNavigationHandleOwnership() {
|
| return std::move(navigation_handle_);
|
| }
|
|
|
| -void RenderFrameHostImpl::OnCrossSiteResponse(
|
| - const GlobalRequestID& global_request_id,
|
| - std::unique_ptr<CrossSiteTransferringRequest>
|
| - cross_site_transferring_request,
|
| - const std::vector<GURL>& transfer_url_chain,
|
| - const Referrer& referrer,
|
| - ui::PageTransition page_transition,
|
| - bool should_replace_current_entry) {
|
| - frame_tree_node_->render_manager()->OnCrossSiteResponse(
|
| - this, global_request_id, std::move(cross_site_transferring_request),
|
| - transfer_url_chain, referrer, page_transition,
|
| - should_replace_current_entry);
|
| -}
|
| -
|
| void RenderFrameHostImpl::SwapOut(
|
| RenderFrameProxyHost* proxy,
|
| bool is_loading) {
|
|
|