Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(934)

Side by Side Diff: content/public/browser/resource_dispatcher_host.cc

Issue 2758993002: Move the functions which block, resume and cancel requests for a frame route id out of ResourceDisp… (Closed)
Patch Set: Rebased to tip Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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/resource_dispatcher_host_impl.h"
10 #include "content/public/browser/browser_thread.h"
11
12 namespace content {
13
14 // static
15 void ResourceDispatcherHost::BlockRequestsForFrameFromUI(
16 RenderFrameHost* root_frame_host) {
17 ResourceDispatcherHostImpl::BlockRequestsForFrameFromUI(root_frame_host);
18 }
19
20 // static
21 void ResourceDispatcherHost::ResumeBlockedRequestsForFrameFromUI(
22 RenderFrameHost* root_frame_host) {
23 ResourceDispatcherHostImpl::ResumeBlockedRequestsForFrameFromUI(
24 root_frame_host);
25 }
26
27 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/resource_dispatcher_host.h ('k') | extensions/browser/app_window/app_window_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698