summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/frame/browser_view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/frame/browser_view.cc')
-rw-r--r--chrome/browser/views/frame/browser_view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/views/frame/browser_view.cc b/chrome/browser/views/frame/browser_view.cc
index 8c6573c..ed494d6 100644
--- a/chrome/browser/views/frame/browser_view.cc
+++ b/chrome/browser/views/frame/browser_view.cc
@@ -737,9 +737,9 @@ void BrowserView::SetFocusToLocationBar() {
}
}
-void BrowserView::UpdateStopGoState(bool is_loading) {
+void BrowserView::UpdateStopGoState(bool is_loading, bool force) {
toolbar_->GetGoButton()->ChangeMode(
- is_loading ? GoButton::MODE_STOP : GoButton::MODE_GO);
+ is_loading ? GoButton::MODE_STOP : GoButton::MODE_GO, force);
}
void BrowserView::UpdateToolbar(TabContents* contents,