summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-08 21:15:27 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-08 21:15:27 +0000
commit0f147e472e2471dda1ba4654a5bda966b7c6a3a8 (patch)
tree6dd2fe4180ee1facfb13cd83dcf2a70f38312201 /chrome/common
parent40e89fed7e91bd118aff7958cc44de16bf0d6d6e (diff)
downloadchromium_src-0f147e472e2471dda1ba4654a5bda966b7c6a3a8.zip
chromium_src-0f147e472e2471dda1ba4654a5bda966b7c6a3a8.tar.gz
chromium_src-0f147e472e2471dda1ba4654a5bda966b7c6a3a8.tar.bz2
Fix compile failure on GCC
BUG=54274 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65426 0039d316-1c4b-4281-b951-d872f2087c98
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);
}