From c398981aa94189d9173b304e5b1d67f97e79fbc8 Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Wed, 15 Apr 2009 18:08:49 +0000 Subject: Fix regression I introduced where Stop/Go button would toggle state instantly instead of having protections against accidental user actions while the mouse was hovering the button. I elected to condense ChangeMode() and ScheduleChangeMode() into one function, which as a result became pretty simple. BUG=9843 Review URL: http://codereview.chromium.org/67156 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13761 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/browser_window.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/browser_window.h') diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index e7e8e4f..440c66d 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -106,7 +106,7 @@ class BrowserWindow { // Informs the view whether or not a load is in progress for the current tab. // The view can use this notification to update the go/stop button. - virtual void UpdateStopGoState(bool is_loading) = 0; + virtual void UpdateStopGoState(bool is_loading, bool force) = 0; // Updates the toolbar with the state for the specified |contents|. virtual void UpdateToolbar(TabContents* contents, -- cgit v1.1