summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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|.