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

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: Minor changes. 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
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);
808 scoped_ptr<NavigationRequest> navigation_request = 809 // This value must be set here because SetNavigationRequest might change the
clamy 2015/06/10 13:22:03 nit: empty line above comment. In fact, it would b
carlosk 2015/06/10 14:22:53 Done.
810 // renderer live/non-live status and change this result.
811 bool should_dispatch_beforeunload =
812 frame_tree_node->current_frame_host()->ShouldDispatchBeforeUnload();
813 frame_tree_node->SetNavigationRequest(
809 NavigationRequest::CreateBrowserInitiated(frame_tree_node, entry, 814 NavigationRequest::CreateBrowserInitiated(frame_tree_node, entry,
810 navigation_type, 815 navigation_type,
811 navigation_start, controller_); 816 navigation_start, controller_));
812 frame_tree_node->SetNavigationRequest(navigation_request.Pass()); 817 NavigationRequest* navigation_request = frame_tree_node->navigation_request();
813 frame_tree_node->navigation_request()->SetWaitingForRendererResponse();
814 818
815 // Have the current renderer execute its beforeUnload event if needed. If it 819 // 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 820 // is not needed NavigationRequest::BeginNavigation should get called. This is
817 // called. If the navigation is synchronous and same-site, then it can be sent 821 // the case if the renderer is not live, this is a subframe navigation, or if
818 // directly to the renderer (currently this is the case for navigations that 822 // the navigation is synchronous and same-site (such as for data URLs or
819 // do not make network requests such as data urls or Javascript urls). 823 // Javascript URLs, when no network request is made).
820 if (NavigationRequest::ShouldMakeNetworkRequest( 824 if (should_dispatch_beforeunload &&
821 frame_tree_node->navigation_request()->common_params().url)) { 825 NavigationRequest::ShouldMakeNetworkRequest(
826 navigation_request->common_params().url)) {
827 navigation_request->SetWaitingForRendererResponse();
822 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true); 828 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true);
823 } else { 829 } else {
824 BeginNavigation(frame_tree_node); 830 navigation_request->BeginNavigation();
825 } 831 }
826 } 832 }
827 833
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( 834 void NavigatorImpl::RecordNavigationMetrics(
846 const LoadCommittedDetails& details, 835 const LoadCommittedDetails& details,
847 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, 836 const FrameHostMsg_DidCommitProvisionalLoad_Params& params,
848 SiteInstance* site_instance) { 837 SiteInstance* site_instance) {
849 DCHECK(site_instance->HasProcess()); 838 DCHECK(site_instance->HasProcess());
850 839
851 if (!details.is_in_page) 840 if (!details.is_in_page)
852 RecordAction(base::UserMetricsAction("FrameLoad")); 841 RecordAction(base::UserMetricsAction("FrameLoad"));
853 842
854 if (!details.is_main_frame || !navigation_data_ || 843 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()); 911 entry->set_should_replace_entry(pending_entry->should_replace_entry());
923 entry->SetRedirectChain(pending_entry->GetRedirectChain()); 912 entry->SetRedirectChain(pending_entry->GetRedirectChain());
924 } 913 }
925 controller_->SetPendingEntry(entry); 914 controller_->SetPendingEntry(entry);
926 if (delegate_) 915 if (delegate_)
927 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL); 916 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL);
928 } 917 }
929 } 918 }
930 919
931 } // namespace content 920 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl.h ('k') | content/browser/frame_host/navigator_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698