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

Unified Diff: chrome/browser/resource_dispatcher_host.cc

Issue 10925: Fix erase method usage on STL containers in Chrome. Invoking erase on the ite... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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: chrome/browser/resource_dispatcher_host.cc
===================================================================
--- chrome/browser/resource_dispatcher_host.cc (revision 5528)
+++ chrome/browser/resource_dispatcher_host.cc (working copy)
@@ -1923,7 +1923,7 @@
}
void ResourceDispatcherHost::RemovePendingRequest(
- PendingRequestList::iterator& iter) {
+ const PendingRequestList::iterator& iter) {
// Notify the login handler that this request object is going away.
ExtraRequestInfo* info = ExtraInfoForRequest(iter->second);
if (info && info->login_handler)

Powered by Google App Engine
This is Rietveld 408576698