Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(494)

Side by Side Diff: content/browser/frame_host/navigator_impl.cc

Issue 1163303003: PlzNavigate: Create the speculative renderer earlier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed clamy's comments; moved RFHM::BeginNavigation call into FTN::SetNavigationRequest. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/frame_host/navigator_impl.h" 5 #include "content/browser/frame_host/navigator_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "content/browser/frame_host/frame_tree.h" 10 #include "content/browser/frame_host/frame_tree.h"
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 NavigationRequest* navigation_request = frame_tree_node->navigation_request(); 593 NavigationRequest* navigation_request = frame_tree_node->navigation_request();
594 594
595 // The NavigationRequest may have been canceled while the renderer was 595 // The NavigationRequest may have been canceled while the renderer was
596 // executing the BeforeUnload event. 596 // executing the BeforeUnload event.
597 if (!navigation_request) 597 if (!navigation_request)
598 return; 598 return;
599 599
600 DCHECK_EQ(NavigationRequest::WAITING_FOR_RENDERER_RESPONSE, 600 DCHECK_EQ(NavigationRequest::WAITING_FOR_RENDERER_RESPONSE,
601 navigation_request->state()); 601 navigation_request->state());
602 602
603 // If the navigation is allowed to proceed, send the request to the IO thread.
603 if (proceed) 604 if (proceed)
604 BeginNavigation(frame_tree_node); 605 navigation_request->BeginNavigation();
605 else 606 else
606 CancelNavigation(frame_tree_node); 607 CancelNavigation(frame_tree_node);
607 } 608 }
608 609
609 // PlzNavigate 610 // PlzNavigate
610 void NavigatorImpl::OnBeginNavigation( 611 void NavigatorImpl::OnBeginNavigation(
611 FrameTreeNode* frame_tree_node, 612 FrameTreeNode* frame_tree_node,
612 const CommonNavigationParams& common_params, 613 const CommonNavigationParams& common_params,
613 const BeginNavigationParams& begin_params, 614 const BeginNavigationParams& begin_params,
614 scoped_refptr<ResourceRequestBody> body) { 615 scoped_refptr<ResourceRequestBody> body) {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 // main frame navigation that start via a BeginNavigation IPC, the 649 // main frame navigation that start via a BeginNavigation IPC, the
649 // RenderFrameHost will not be swapped. Therefore it is safe to call 650 // RenderFrameHost will not be swapped. Therefore it is safe to call
650 // DidStartMainFrameNavigation with the SiteInstance from the current 651 // DidStartMainFrameNavigation with the SiteInstance from the current
651 // RenderFrameHost. 652 // RenderFrameHost.
652 DidStartMainFrameNavigation( 653 DidStartMainFrameNavigation(
653 common_params.url, 654 common_params.url,
654 frame_tree_node->current_frame_host()->GetSiteInstance()); 655 frame_tree_node->current_frame_host()->GetSiteInstance());
655 navigation_data_.reset(); 656 navigation_data_.reset();
656 } 657 }
657 658
658 BeginNavigation(frame_tree_node); 659 frame_tree_node->navigation_request()->BeginNavigation();
659 } 660 }
660 661
661 // PlzNavigate 662 // PlzNavigate
662 void NavigatorImpl::CommitNavigation(FrameTreeNode* frame_tree_node, 663 void NavigatorImpl::CommitNavigation(FrameTreeNode* frame_tree_node,
663 ResourceResponse* response, 664 ResourceResponse* response,
664 scoped_ptr<StreamHandle> body) { 665 scoped_ptr<StreamHandle> body) {
665 CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch( 666 CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
666 switches::kEnableBrowserSideNavigation)); 667 switches::kEnableBrowserSideNavigation));
667 668
668 NavigationRequest* navigation_request = frame_tree_node->navigation_request(); 669 NavigationRequest* navigation_request = frame_tree_node->navigation_request();
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 // PlzNavigate 798 // PlzNavigate
798 void NavigatorImpl::RequestNavigation( 799 void NavigatorImpl::RequestNavigation(
799 FrameTreeNode* frame_tree_node, 800 FrameTreeNode* frame_tree_node,
800 const NavigationEntryImpl& entry, 801 const NavigationEntryImpl& entry,
801 NavigationController::ReloadType reload_type, 802 NavigationController::ReloadType reload_type,
802 base::TimeTicks navigation_start) { 803 base::TimeTicks navigation_start) {
803 CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch( 804 CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
804 switches::kEnableBrowserSideNavigation)); 805 switches::kEnableBrowserSideNavigation));
805 DCHECK(frame_tree_node); 806 DCHECK(frame_tree_node);
806 FrameMsg_Navigate_Type::Value navigation_type = 807 FrameMsg_Navigate_Type::Value navigation_type =
807 GetNavigationType(controller_->GetBrowserContext(), entry, reload_type); 808 GetNavigationType(controller_->GetBrowserContext(), entry, reload_type);
clamy 2015/06/09 16:01:29 Please add a comment that the value needs to be co
carlosk 2015/06/10 11:53:08 Done.
808 scoped_ptr<NavigationRequest> navigation_request = 809 bool should_dispatch_beforeunload =
810 frame_tree_node->current_frame_host()->ShouldDispatchBeforeUnload();
811 frame_tree_node->SetNavigationRequest(
809 NavigationRequest::CreateBrowserInitiated(frame_tree_node, entry, 812 NavigationRequest::CreateBrowserInitiated(frame_tree_node, entry,
810 navigation_type, 813 navigation_type,
811 navigation_start, controller_); 814 navigation_start, controller_));
812 frame_tree_node->SetNavigationRequest(navigation_request.Pass()); 815 NavigationRequest* navigation_request = frame_tree_node->navigation_request();
813 frame_tree_node->navigation_request()->SetWaitingForRendererResponse();
814 816
815 // Have the current renderer execute its beforeUnload event if needed. If it 817 // Have the current renderer execute its beforeUnload event if needed. If it
816 // is not needed (eg. the renderer is not live), BeginNavigation should get 818 // is not needed (eg. the renderer is not live),
817 // called. If the navigation is synchronous and same-site, then it can be sent 819 // NavigationRequest::BeginNavigation should get called. If the navigation is
818 // directly to the renderer (currently this is the case for navigations that 820 // synchronous and same-site, then it can be sent directly to the current
819 // do not make network requests such as data urls or Javascript urls). 821 // renderer (currently this is the case for navigations that do not make
820 if (NavigationRequest::ShouldMakeNetworkRequest( 822 // network requests such as data urls or Javascript urls).
821 frame_tree_node->navigation_request()->common_params().url)) { 823 if (should_dispatch_beforeunload &&
824 NavigationRequest::ShouldMakeNetworkRequest(
825 navigation_request->common_params().url)) {
826 navigation_request->SetWaitingForRendererResponse();
822 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true); 827 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true);
823 } else { 828 } else {
824 BeginNavigation(frame_tree_node); 829 navigation_request->BeginNavigation();
825 } 830 }
826 } 831 }
827 832
828 void NavigatorImpl::BeginNavigation(FrameTreeNode* frame_tree_node) {
829 NavigationRequest* navigation_request = frame_tree_node->navigation_request();
830
831 // A browser-initiated navigation could have been cancelled while it was
832 // waiting for the BeforeUnload event to execute.
833 if (!navigation_request)
834 return;
835
836 // Start the request.
837 if (navigation_request->BeginNavigation()) {
838 // If the request was sent to the IO thread, notify the
839 // RenderFrameHostManager so it can speculatively create a RenderFrameHost
840 // (and potentially a new renderer process) in parallel.
841 frame_tree_node->render_manager()->BeginNavigation(*navigation_request);
842 }
843 }
844
845 void NavigatorImpl::RecordNavigationMetrics( 833 void NavigatorImpl::RecordNavigationMetrics(
846 const LoadCommittedDetails& details, 834 const LoadCommittedDetails& details,
847 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, 835 const FrameHostMsg_DidCommitProvisionalLoad_Params& params,
848 SiteInstance* site_instance) { 836 SiteInstance* site_instance) {
849 DCHECK(site_instance->HasProcess()); 837 DCHECK(site_instance->HasProcess());
850 838
851 if (!details.is_in_page) 839 if (!details.is_in_page)
852 RecordAction(base::UserMetricsAction("FrameLoad")); 840 RecordAction(base::UserMetricsAction("FrameLoad"));
853 841
854 if (!details.is_main_frame || !navigation_data_ || 842 if (!details.is_main_frame || !navigation_data_ ||
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 entry->set_should_replace_entry(pending_entry->should_replace_entry()); 910 entry->set_should_replace_entry(pending_entry->should_replace_entry());
923 entry->SetRedirectChain(pending_entry->GetRedirectChain()); 911 entry->SetRedirectChain(pending_entry->GetRedirectChain());
924 } 912 }
925 controller_->SetPendingEntry(entry); 913 controller_->SetPendingEntry(entry);
926 if (delegate_) 914 if (delegate_)
927 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL); 915 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL);
928 } 916 }
929 } 917 }
930 918
931 } // namespace content 919 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698