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

Unified Diff: content/browser/loader/resource_dispatcher_host_impl.cc

Issue 12600018: ResourceScheduler should use renderer notifications instead of MRUCache to track renderers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switch to RenderViewHostObserver Created 7 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 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 de3c2d85ae44909773f54b30687d39c02f461b1f..d74c588b9e9b8ca2ec04e8a2051166e814da32df 100644
--- a/content/browser/loader/resource_dispatcher_host_impl.cc
+++ b/content/browser/loader/resource_dispatcher_host_impl.cc
@@ -1174,6 +1174,19 @@ void ResourceDispatcherHostImpl::OnDidLoadResourceFromMemoryCache(
GetCache()->OnExternalCacheHit(url, http_method);
}
+void ResourceDispatcherHostImpl::OnRenderViewHostCreated(
+ int child_id,
+ int route_id) {
+ scheduler_->OnClientCreated(child_id, route_id);
+}
+
+void ResourceDispatcherHostImpl::OnRenderViewHostDeleted(
+ int child_id,
+ int route_id) {
+ CancelRequestsForRoute(child_id, route_id);
+ scheduler_->OnClientDeleted(child_id, route_id);
+}
+
// This function is only used for saving feature.
void ResourceDispatcherHostImpl::BeginSaveFile(
const GURL& url,

Powered by Google App Engine
This is Rietveld 408576698