| Index: content/browser/frame_host/navigator_impl.cc
|
| diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc
|
| index f01dc531fca5073272ebf8e64a56d9a65e265bc1..f45ebae66e3382b87de97c4415b1cfaf68196f43 100644
|
| --- a/content/browser/frame_host/navigator_impl.cc
|
| +++ b/content/browser/frame_host/navigator_impl.cc
|
| @@ -105,7 +105,7 @@ void MakeNavigateParams(const NavigationEntryImpl& entry,
|
| entry.GetBrowserInitiatedPostData()->size());
|
| }
|
|
|
| - params->redirects = entry.redirect_chain();
|
| + params->redirects = entry.GetRedirectChain();
|
|
|
| params->can_load_local_resources = entry.GetCanLoadLocalResources();
|
| params->frame_to_navigate = entry.GetFrameToNavigate();
|
| @@ -168,7 +168,7 @@ void NavigatorImpl::DidStartProvisionalLoad(
|
| entry->set_transferred_global_request_id(
|
| pending_entry->transferred_global_request_id());
|
| entry->set_should_replace_entry(pending_entry->should_replace_entry());
|
| - entry->set_redirect_chain(pending_entry->redirect_chain());
|
| + entry->SetRedirectChain(pending_entry->GetRedirectChain());
|
| }
|
| controller_->SetPendingEntry(entry);
|
| if (delegate_)
|
|
|