OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/public/browser/resource_dispatcher_host.h" |
| 6 |
| 7 #include "base/callback.h" |
| 8 #include "content/browser/frame_host/render_frame_host_impl.h" |
| 9 #include "content/browser/loader/global_routing_id.h" |
| 10 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
| 11 #include "content/public/browser/browser_thread.h" |
| 12 |
| 13 namespace content { |
| 14 |
| 15 // static |
| 16 void ResourceDispatcherHost::BlockRequestsForFrameFromUI( |
| 17 RenderFrameHost* root_frame_host) { |
| 18 ResourceDispatcherHostImpl::BlockRequestsForFrameFromUI(root_frame_host); |
| 19 } |
| 20 |
| 21 // static |
| 22 void ResourceDispatcherHost::ResumeBlockedRequestsForFrameFromUI( |
| 23 RenderFrameHost* root_frame_host) { |
| 24 ResourceDispatcherHostImpl::ResumeBlockedRequestsForFrameFromUI( |
| 25 root_frame_host); |
| 26 } |
| 27 |
| 28 } // namespace content |
OLD | NEW |