| Index: content/browser/web_contents/interstitial_page_impl.cc
|
| diff --git a/content/browser/web_contents/interstitial_page_impl.cc b/content/browser/web_contents/interstitial_page_impl.cc
|
| index 8d3d9b3d7a19596fd6a432e7005cecc4b4cbbfa6..4c0aa10fc760c25ab95e4a0df45cc4513e4d377e 100644
|
| --- a/content/browser/web_contents/interstitial_page_impl.cc
|
| +++ b/content/browser/web_contents/interstitial_page_impl.cc
|
| @@ -275,7 +275,7 @@ void InterstitialPageImpl::Hide() {
|
| frame_tree_.SwapMainFrame(NULL);
|
| web_contents_->DetachInterstitialPage();
|
| // Let's revert to the original title if necessary.
|
| - NavigationEntry* entry = web_contents_->GetController().GetActiveEntry();
|
| + NavigationEntry* entry = web_contents_->GetController().GetVisibleEntry();
|
| if (!new_navigation_ && should_revert_web_contents_title_) {
|
| entry->SetTitle(original_web_contents_title_);
|
| web_contents_->NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE);
|
| @@ -415,7 +415,7 @@ void InterstitialPageImpl::UpdateTitle(
|
| return;
|
|
|
| DCHECK(render_view_host == render_view_host_);
|
| - NavigationEntry* entry = web_contents_->GetController().GetActiveEntry();
|
| + NavigationEntry* entry = web_contents_->GetController().GetVisibleEntry();
|
| if (!entry) {
|
| // Crash reports from the field indicate this can be NULL.
|
| // This is unexpected as InterstitialPages constructed with the
|
|
|