summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 17:02:25 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 17:02:25 +0000
commitbab728486ea14ef1271f74779fc52995824f7014 (patch)
treeebc5009546f7068edfa85b02fd9d92d109da0d39
parent3504fce16112e71f7a1b84c75895b9891a3f41d3 (diff)
downloadchromium_src-bab728486ea14ef1271f74779fc52995824f7014.zip
chromium_src-bab728486ea14ef1271f74779fc52995824f7014.tar.gz
chromium_src-bab728486ea14ef1271f74779fc52995824f7014.tar.bz2
Make it compile under VS2005.
R=kkania@chromium.org Review URL: http://codereview.chromium.org/6857003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81756 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/automation/automation_tab_helper.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/automation/automation_tab_helper.cc b/chrome/browser/automation/automation_tab_helper.cc
index 0fc4ba8..c9658a4 100644
--- a/chrome/browser/automation/automation_tab_helper.cc
+++ b/chrome/browser/automation/automation_tab_helper.cc
@@ -134,7 +134,7 @@ void AutomationTabHelper::OnWillPerformClientRedirect(
}
void AutomationTabHelper::OnDidCompleteOrCancelClientRedirect(int64 frame_id) {
- std::set<int64>::const_iterator iter =
+ std::set<int64>::iterator iter =
pending_client_redirects_.find(frame_id);
// It is possible that we did not track the redirect becasue it had a non-zero
// delay. See the comment in |OnWillPerformClientRedirect|.