OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 Loading... | |
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 |
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 (eg. the renderer is not live), |
817 // called. If the navigation is synchronous and same-site, then it can be sent | 821 // NavigationRequest::BeginNavigation should get called. If the navigation is |
clamy
2015/06/10 12:30:27
I think this comment needs a bit of rephrasing to
carlosk
2015/06/10 13:15:05
Done.
| |
818 // directly to the renderer (currently this is the case for navigations that | 822 // 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). | 823 // renderer (currently this is the case for navigations that do not make |
820 if (NavigationRequest::ShouldMakeNetworkRequest( | 824 // network requests such as data urls or Javascript urls). |
821 frame_tree_node->navigation_request()->common_params().url)) { | 825 if (should_dispatch_beforeunload && |
826 NavigationRequest::ShouldMakeNetworkRequest( | |
827 navigation_request->common_params().url)) { | |
828 navigation_request->SetWaitingForRendererResponse(); | |
822 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true); | 829 frame_tree_node->current_frame_host()->DispatchBeforeUnload(true); |
823 } else { | 830 } else { |
824 BeginNavigation(frame_tree_node); | 831 navigation_request->BeginNavigation(); |
825 } | 832 } |
826 } | 833 } |
827 | 834 |
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( | 835 void NavigatorImpl::RecordNavigationMetrics( |
846 const LoadCommittedDetails& details, | 836 const LoadCommittedDetails& details, |
847 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, | 837 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, |
848 SiteInstance* site_instance) { | 838 SiteInstance* site_instance) { |
849 DCHECK(site_instance->HasProcess()); | 839 DCHECK(site_instance->HasProcess()); |
850 | 840 |
851 if (!details.is_in_page) | 841 if (!details.is_in_page) |
852 RecordAction(base::UserMetricsAction("FrameLoad")); | 842 RecordAction(base::UserMetricsAction("FrameLoad")); |
853 | 843 |
854 if (!details.is_main_frame || !navigation_data_ || | 844 if (!details.is_main_frame || !navigation_data_ || |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
922 entry->set_should_replace_entry(pending_entry->should_replace_entry()); | 912 entry->set_should_replace_entry(pending_entry->should_replace_entry()); |
923 entry->SetRedirectChain(pending_entry->GetRedirectChain()); | 913 entry->SetRedirectChain(pending_entry->GetRedirectChain()); |
924 } | 914 } |
925 controller_->SetPendingEntry(entry); | 915 controller_->SetPendingEntry(entry); |
926 if (delegate_) | 916 if (delegate_) |
927 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL); | 917 delegate_->NotifyChangedNavigationState(content::INVALIDATE_TYPE_URL); |
928 } | 918 } |
929 } | 919 } |
930 | 920 |
931 } // namespace content | 921 } // namespace content |
OLD | NEW |