summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/net/test_url_fetcher_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/net/test_url_fetcher_factory.cc b/chrome/common/net/test_url_fetcher_factory.cc
index d99f442..635319f3 100644
--- a/chrome/common/net/test_url_fetcher_factory.cc
+++ b/chrome/common/net/test_url_fetcher_factory.cc
@@ -29,7 +29,7 @@ TestURLFetcher* TestURLFetcherFactory::GetFetcherByID(int id) const {
}
void TestURLFetcherFactory::RemoveFetcherFromMap(int id) {
- Fetchers::const_iterator i = fetchers_.find(id);
+ Fetchers::iterator i = fetchers_.find(id);
DCHECK(i != fetchers_.end());
fetchers_.erase(i);
}