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

Unified Diff: content/public/browser/render_process_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/render_process_host.h
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 77f817bbb0696183200e8efe828d2a51ad1a63f8..24b922b289650867f213762e06914d1400def72b 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -211,9 +211,9 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// 10 milliseconds.
virtual base::TimeDelta GetChildProcessIdleTime() const = 0;
- // Called to resume the requests for a view created through window.open that
+ // Called to resume the requests for a frame created through window.open that
// were initially blocked.
- virtual void ResumeRequestsForView(int route_id) = 0;
+ virtual void ResumeRequestsForFrame(int route_id) = 0;
// Checks that the given renderer can request |url|, if not it sets it to
// about:blank.

Powered by Google App Engine
This is Rietveld 408576698