| 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 abe1b5f0faa8b5c4704124b767818503c36d3110..e8403064f65c5d202c7910f2dc7c36cbcf8465b2 100644
|
| --- a/content/browser/frame_host/interstitial_page_impl.cc
|
| +++ b/content/browser/frame_host/interstitial_page_impl.cc
|
| @@ -23,7 +23,7 @@
|
| #include "content/browser/frame_host/interstitial_page_navigator_impl.h"
|
| #include "content/browser/frame_host/navigation_controller_impl.h"
|
| #include "content/browser/frame_host/navigation_entry_impl.h"
|
| -#include "content/browser/loader/resource_dispatcher_host_impl.h"
|
| +#include "content/browser/frame_host/render_frame_host_impl.h"
|
| #include "content/browser/renderer_host/render_process_host_impl.h"
|
| #include "content/browser/renderer_host/render_view_host_delegate_view.h"
|
| #include "content/browser/renderer_host/render_view_host_factory.h"
|
| @@ -848,14 +848,14 @@ void InterstitialPageImpl::TakeActionOnResourceDispatcher(
|
|
|
| switch (action) {
|
| case BLOCK:
|
| - ResourceDispatcherHost::BlockRequestsForFrameFromUI(rfh);
|
| + rfh->BlockRequestsForFrame();
|
| break;
|
| case RESUME:
|
| - ResourceDispatcherHost::ResumeBlockedRequestsForFrameFromUI(rfh);
|
| + rfh->ResumeBlockedRequestsForFrame();
|
| break;
|
| default:
|
| DCHECK_EQ(action, CANCEL);
|
| - ResourceDispatcherHostImpl::CancelBlockedRequestsForFrameFromUI(rfh);
|
| + rfh->CancelBlockedRequestsForFrame();
|
| break;
|
| }
|
| }
|
|
|