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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

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/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index a7d4c3f584fa8a7696838af822ad2a4aac6f96b0..f221bd22d2f4e4269deb4be99c2f8df9ed95e12b 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -1917,8 +1917,8 @@ base::TimeDelta RenderProcessHostImpl::GetChildProcessIdleTime() const {
return base::TimeTicks::Now() - child_process_activity_time_;
}
-void RenderProcessHostImpl::ResumeRequestsForView(int route_id) {
- widget_helper_->ResumeRequestsForView(route_id);
+void RenderProcessHostImpl::ResumeRequestsForFrame(int route_id) {
Randy Smith (Not in Mondays) 2015/12/29 23:11:37 I hope you were really careful about making sure t
Charlie Harrison 2015/12/30 20:51:49 The approach I did here (and other places) was to
Randy Smith (Not in Mondays) 2016/01/04 21:24:48 No, actually, that sounds like a good approach. S
+ widget_helper_->ResumeRequestsForFrame(route_id);
}
void RenderProcessHostImpl::FilterURL(bool empty_allowed, GURL* url) {

Powered by Google App Engine
This is Rietveld 408576698