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

Unified Diff: chrome/common/resource_dispatcher.cc

Issue 1703017: When cancelling a pending request, release any outstanding SharedIOBuffer objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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
« no previous file with comments | « chrome/common/resource_dispatcher.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/resource_dispatcher.cc
===================================================================
--- chrome/common/resource_dispatcher.cc (revision 45937)
+++ chrome/common/resource_dispatcher.cc (working copy)
@@ -484,17 +484,10 @@
if (it == pending_requests_.end())
return false;
- // Iterate through the deferred message queue and clean up the messages.
PendingRequestInfo& request_info = it->second;
- MessageQueue& q = request_info.deferred_message_queue;
- while (!q.empty()) {
- IPC::Message* m = q.front();
- ReleaseResourcesInDataMessage(*m);
- q.pop_front();
- delete m;
- }
+ ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue);
+ pending_requests_.erase(it);
- pending_requests_.erase(it);
return true;
}
@@ -502,14 +495,14 @@
int request_id) {
PendingRequestList::iterator it = pending_requests_.find(request_id);
if (it == pending_requests_.end()) {
- DLOG(ERROR) << "unknown request";
+ DLOG(WARNING) << "unknown request";
return;
}
+
PendingRequestInfo& request_info = it->second;
- // Avoid spamming the host with cancel messages.
- if (request_info.is_cancelled)
- return;
- request_info.is_cancelled = true;
+ ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue);
+ pending_requests_.erase(it);
+
message_sender()->Send(
new ViewHostMsg_CancelRequest(routing_id, request_id));
}
@@ -598,6 +591,7 @@
return false;
}
+// static
void ResourceDispatcher::ReleaseResourcesInDataMessage(
const IPC::Message& message) {
void* iter = NULL;
@@ -618,3 +612,13 @@
}
}
}
+
+// static
+void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) {
+ while (!queue->empty()) {
+ IPC::Message* message = queue->front();
+ ReleaseResourcesInDataMessage(*message);
+ queue->pop_front();
+ delete message;
+ }
+}
« no previous file with comments | « chrome/common/resource_dispatcher.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698