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

Unified Diff: content/public/browser/resource_dispatcher_host.h

Issue 1542743002: [RDHI] Refactored blocked_loaders_map_ to key by render frame route id (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: just comments / minor restructuring (trybots previous) Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/resource_dispatcher_host.h
diff --git a/content/public/browser/resource_dispatcher_host.h b/content/public/browser/resource_dispatcher_host.h
index 6259b238e26da15b596fc4c8656249cacddd8d85..55b4b90ce83ec66fb8f95e17f4c91e9998bf4fba 100644
--- a/content/public/browser/resource_dispatcher_host.h
+++ b/content/public/browser/resource_dispatcher_host.h
@@ -67,10 +67,10 @@ class CONTENT_EXPORT ResourceDispatcherHost {
// Causes all new requests for the route identified by |child_id| and
// |route_id| to be blocked (not being started) until
// ResumeBlockedRequestsForRoute is called.
- virtual void BlockRequestsForRoute(int child_id, int route_id) = 0;
+ virtual void BlockRequestsForFrame(int child_id, int route_id) = 0;
// Resumes any blocked request for the specified route id.
- virtual void ResumeBlockedRequestsForRoute(int child_id, int route_id) = 0;
+ virtual void ResumeBlockedRequestsForFrame(int child_id, int route_id) = 0;
protected:
virtual ~ResourceDispatcherHost() {}

Powered by Google App Engine
This is Rietveld 408576698