| Index: content/browser/frame_host/interstitial_page_impl.cc
|
| diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc
|
| index 1324c7321a9073ec4348cb5e7388c043f817f5d1..b836847ae22f67244aef33c2fed5accf6d2a417f 100644
|
| --- a/content/browser/frame_host/interstitial_page_impl.cc
|
| +++ b/content/browser/frame_host/interstitial_page_impl.cc
|
| @@ -483,8 +483,7 @@ void InterstitialPageImpl::DidNavigate(
|
| // as complete. Without this, navigating in a UI test to a URL that triggers
|
| // an interstitial would hang.
|
| web_contents_was_loading_ = controller_->delegate()->IsLoading();
|
| - controller_->delegate()->SetIsLoading(
|
| - controller_->delegate()->GetRenderViewHost(), false, true, NULL);
|
| + controller_->delegate()->SetIsLoading(false, true, NULL);
|
| }
|
|
|
| RendererPreferences InterstitialPageImpl::GetRendererPrefs(
|
| @@ -591,8 +590,7 @@ void InterstitialPageImpl::Proceed() {
|
|
|
| // Resumes the throbber, if applicable.
|
| if (web_contents_was_loading_)
|
| - controller_->delegate()->SetIsLoading(
|
| - controller_->delegate()->GetRenderViewHost(), true, true, NULL);
|
| + controller_->delegate()->SetIsLoading(true, true, NULL);
|
|
|
| // If this is a new navigation, the old page is going away, so we cancel any
|
| // blocked requests for it. If it is not a new navigation, then it means the
|
|
|