summaryrefslogtreecommitdiffstats
path: root/content/public/browser/resource_dispatcher_host.cc
blob: 3e2050eb8fcdd2b1a6674e311763edbdd98975a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/browser/resource_dispatcher_host.h"

#include "base/callback.h"
#include "content/browser/frame_host/render_frame_host_impl.h"
#include "content/browser/loader/global_routing_id.h"
#include "content/browser/loader/resource_dispatcher_host_impl.h"
#include "content/public/browser/browser_thread.h"

namespace content {

// static
void ResourceDispatcherHost::BlockRequestsForFrameFromUI(
    RenderFrameHost* root_frame_host) {
  ResourceDispatcherHostImpl::BlockRequestsForFrameFromUI(root_frame_host);
}

// static
void ResourceDispatcherHost::ResumeBlockedRequestsForFrameFromUI(
    RenderFrameHost* root_frame_host) {
  ResourceDispatcherHostImpl::ResumeBlockedRequestsForFrameFromUI(
      root_frame_host);
}

}  // namespace content