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

Unified Diff: content/browser/loader/resource_dispatcher_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: cleanup Created 4 years, 12 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/resource_dispatcher_host_impl.cc
diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc
index 67eaf08af5b96a644010553406426a9dce4e3796..7c096c24b31eb4cf298512ad1837af8a8541609e 100644
--- a/content/browser/loader/resource_dispatcher_host_impl.cc
+++ b/content/browser/loader/resource_dispatcher_host_impl.cc
@@ -39,6 +39,7 @@
#include "content/browser/download/save_file_manager.h"
#include "content/browser/download/save_file_resource_handler.h"
#include "content/browser/fileapi/chrome_blob_storage_context.h"
+#include "content/browser/frame_host/frame_tree.h"
#include "content/browser/frame_host/navigation_request_info.h"
#include "content/browser/frame_host/navigator.h"
#include "content/browser/loader/async_resource_handler.h"
@@ -570,7 +571,7 @@ void ResourceDispatcherHostImpl::CancelRequestsForContext(
i != blocked_loaders_map_.end();) {
BlockedLoadersList* loaders = i->second;
if (loaders->empty()) {
- // This can happen if BlockRequestsForRoute() has been called for a route,
+ // This can happen if BlockRequestsForFrame() has been called for a route,
// but we haven't blocked any matching requests yet.
++i;
continue;
@@ -1053,19 +1054,19 @@ void ResourceDispatcherHostImpl::OnShutdown() {
// Clear blocked requests if any left.
// Note that we have to do this in 2 passes as we cannot call
- // CancelBlockedRequestsForRoute while iterating over
+ // CancelBlockedRequestsForFrame while iterating over
// blocked_loaders_map_, as it modifies it.
- std::set<GlobalRoutingID> ids;
+ std::set<GlobalFrameRoutingId> ids;
for (BlockedLoadersMap::const_iterator iter = blocked_loaders_map_.begin();
iter != blocked_loaders_map_.end(); ++iter) {
- std::pair<std::set<GlobalRoutingID>::iterator, bool> result =
+ std::pair<std::set<GlobalFrameRoutingId>::iterator, bool> result =
ids.insert(iter->first);
// We should not have duplicates.
DCHECK(result.second);
}
- for (std::set<GlobalRoutingID>::const_iterator iter = ids.begin();
+ for (std::set<GlobalFrameRoutingId>::const_iterator iter = ids.begin();
iter != ids.end(); ++iter) {
- CancelBlockedRequestsForRoute(iter->child_id, iter->route_id);
+ CancelBlockedRequestsForFrame(*iter);
}
scheduler_.reset();
@@ -1161,11 +1162,11 @@ void ResourceDispatcherHostImpl::UpdateRequestForTransfer(
const ResourceHostMsg_Request& request_data,
const linked_ptr<ResourceLoader>& loader) {
ResourceRequestInfoImpl* info = loader->GetRequestInfo();
- GlobalRoutingID old_routing_id(
- request_data.transferred_request_child_id, info->GetRouteID());
+ GlobalFrameRoutingId old_routing_id(request_data.transferred_request_child_id,
+ info->GetRenderFrameID());
GlobalRequestID old_request_id(request_data.transferred_request_child_id,
request_data.transferred_request_request_id);
- GlobalRoutingID new_routing_id(child_id, route_id);
+ GlobalFrameRoutingId new_routing_id(child_id, request_data.render_frame_id);
GlobalRequestID new_request_id(child_id, request_id);
// Clear out data that depends on |info| before updating it.
@@ -1182,7 +1183,8 @@ void ResourceDispatcherHostImpl::UpdateRequestForTransfer(
// ResourceRequestInfo rather than caching it locally. This lets us update
// the info object when a transfer occurs.
info->UpdateForTransfer(child_id, route_id, request_data.origin_pid,
- request_id, request_data.parent_render_frame_id,
+ request_id, request_data.render_frame_id,
+ request_data.parent_render_frame_id,
filter_->GetWeakPtr());
// Update maps that used the old IDs, if necessary. Some transfers in tests
@@ -1733,6 +1735,11 @@ ResourceRequestInfoImpl* ResourceDispatcherHostImpl::CreateRequestInfo(
std::string()); // original_headers
}
+void ResourceDispatcherHostImpl::OnRenderFrameHostDeleted(
+ const GlobalFrameRoutingId& routing_id) {
+ CancelRequestsForFrame(routing_id);
+}
+
void ResourceDispatcherHostImpl::OnRenderViewHostCreated(int child_id,
int route_id,
bool is_visible,
@@ -1740,11 +1747,9 @@ void ResourceDispatcherHostImpl::OnRenderViewHostCreated(int child_id,
scheduler_->OnClientCreated(child_id, route_id, is_visible, is_audible);
}
-void ResourceDispatcherHostImpl::OnRenderViewHostDeleted(
- int child_id,
- int route_id) {
+void ResourceDispatcherHostImpl::OnRenderViewHostDeleted(int child_id,
+ int route_id) {
scheduler_->OnClientDeleted(child_id, route_id);
- CancelRequestsForRoute(child_id, route_id);
}
void ResourceDispatcherHostImpl::OnRenderViewHostSetIsLoading(int child_id,
@@ -1853,18 +1858,21 @@ void ResourceDispatcherHostImpl::ResumeDeferredNavigation(
// for downloads and detachable resources, which belong to the browser process
// even if initiated via a renderer.
void ResourceDispatcherHostImpl::CancelRequestsForProcess(int child_id) {
- CancelRequestsForRoute(child_id, -1 /* cancel all */);
+ CancelRequestsForFrame(GlobalFrameRoutingId(child_id, -1 /* cancel all */));
nasko 2016/01/07 19:58:39 -1 is not a valid routing id. MSG_ROUTING_NONE?
Charlie Harrison 2016/01/07 22:47:05 Done.
registered_temp_files_.erase(child_id);
}
-void ResourceDispatcherHostImpl::CancelRequestsForRoute(int child_id,
- int route_id) {
+void ResourceDispatcherHostImpl::CancelRequestsForFrame(
+ const GlobalFrameRoutingId& routing_id) {
// Since pending_requests_ is a map, we first build up a list of all of the
// matching requests to be cancelled, and then we cancel them. Since there
// may be more than one request to cancel, we cannot simply hold onto the map
// iterators found in the first loop.
// Find the global ID of all matching elements.
+ int child_id = routing_id.child_id;
+ int route_id = routing_id.route_id;
+
bool any_requests_transferring = false;
std::vector<GlobalRequestID> matching_requests;
for (LoaderMap::const_iterator i = pending_loaders_.begin();
@@ -1883,7 +1891,7 @@ void ResourceDispatcherHostImpl::CancelRequestsForRoute(int child_id,
info->detachable_handler()->Detach();
} else if (!info->IsDownload() && !info->is_stream() &&
!IsTransferredNavigation(id) &&
- (route_id == -1 || route_id == info->GetRouteID())) {
+ (route_id == -1 || route_id == info->GetRenderFrameID())) {
matching_requests.push_back(id);
}
}
@@ -1914,24 +1922,24 @@ void ResourceDispatcherHostImpl::CancelRequestsForRoute(int child_id,
// Now deal with blocked requests if any.
if (route_id != -1) {
- if (blocked_loaders_map_.find(GlobalRoutingID(child_id, route_id)) !=
- blocked_loaders_map_.end()) {
- CancelBlockedRequestsForRoute(child_id, route_id);
+ if (blocked_loaders_map_.find(routing_id) != blocked_loaders_map_.end()) {
+ CancelBlockedRequestsForFrame(routing_id);
}
} else {
- // We have to do all render views for the process |child_id|.
+ // We have to do all render frames for the process |child_id|.
// Note that we have to do this in 2 passes as we cannot call
- // CancelBlockedRequestsForRoute while iterating over
- // blocked_loaders_map_, as it modifies it.
- std::set<int> route_ids;
+ // CancelBlockedRequestsForFrame while iterating over
+ // blocked_loaders_map_, as blocking requests modifies the map.
+ std::set<GlobalFrameRoutingId> routing_ids;
for (BlockedLoadersMap::const_iterator iter = blocked_loaders_map_.begin();
iter != blocked_loaders_map_.end(); ++iter) {
if (iter->first.child_id == child_id)
- route_ids.insert(iter->first.route_id);
+ routing_ids.insert(iter->first);
}
- for (std::set<int>::const_iterator iter = route_ids.begin();
- iter != route_ids.end(); ++iter) {
- CancelBlockedRequestsForRoute(child_id, *iter);
+ for (std::set<GlobalFrameRoutingId>::const_iterator iter =
+ routing_ids.begin();
+ iter != routing_ids.end(); ++iter) {
+ CancelBlockedRequestsForFrame(*iter);
}
}
}
@@ -2278,7 +2286,7 @@ void ResourceDispatcherHostImpl::BeginRequestInternal(
linked_ptr<ResourceLoader> loader(
new ResourceLoader(std::move(request), std::move(handler), this));
- GlobalRoutingID id(info->GetGlobalRoutingID());
+ GlobalFrameRoutingId id(info->GetChildID(), info->GetRenderFrameID());
BlockedLoadersMap::const_iterator iter = blocked_loaders_map_.find(id);
if (iter != blocked_loaders_map_.end()) {
// The request should be blocked.
@@ -2400,31 +2408,28 @@ void ResourceDispatcherHostImpl::UpdateLoadInfo() {
base::Passed(&info_map)));
}
-void ResourceDispatcherHostImpl::BlockRequestsForRoute(int child_id,
- int route_id) {
+void ResourceDispatcherHostImpl::BlockRequestsForFrame(
+ const GlobalFrameRoutingId& routing_id) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- GlobalRoutingID key(child_id, route_id);
- DCHECK(blocked_loaders_map_.find(key) == blocked_loaders_map_.end()) <<
- "BlockRequestsForRoute called multiple time for the same RVH";
- blocked_loaders_map_[key] = new BlockedLoadersList();
+ DCHECK(blocked_loaders_map_.find(routing_id) == blocked_loaders_map_.end())
+ << "BlockRequestsForFrame called multiple time for the same RVH";
+ blocked_loaders_map_[routing_id] = new BlockedLoadersList();
}
-void ResourceDispatcherHostImpl::ResumeBlockedRequestsForRoute(int child_id,
- int route_id) {
- ProcessBlockedRequestsForRoute(child_id, route_id, false);
+void ResourceDispatcherHostImpl::ResumeBlockedRequestsForFrame(
+ const GlobalFrameRoutingId& routing_id) {
+ ProcessBlockedRequestsForFrame(routing_id, false);
}
-void ResourceDispatcherHostImpl::CancelBlockedRequestsForRoute(int child_id,
- int route_id) {
- ProcessBlockedRequestsForRoute(child_id, route_id, true);
+void ResourceDispatcherHostImpl::CancelBlockedRequestsForFrame(
+ const GlobalFrameRoutingId& routing_id) {
+ ProcessBlockedRequestsForFrame(routing_id, true);
}
-void ResourceDispatcherHostImpl::ProcessBlockedRequestsForRoute(
- int child_id,
- int route_id,
+void ResourceDispatcherHostImpl::ProcessBlockedRequestsForFrame(
+ const GlobalFrameRoutingId& routing_id,
bool cancel_requests) {
- BlockedLoadersMap::iterator iter = blocked_loaders_map_.find(
- GlobalRoutingID(child_id, route_id));
+ BlockedLoadersMap::iterator iter = blocked_loaders_map_.find(routing_id);
if (iter == blocked_loaders_map_.end()) {
// It's possible to reach here if the renderer crashed while an interstitial
// page was showing.

Powered by Google App Engine
This is Rietveld 408576698