diff options
Diffstat (limited to 'chrome/browser/ui/gtk/reload_button_gtk.cc')
-rw-r--r-- | chrome/browser/ui/gtk/reload_button_gtk.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/gtk/reload_button_gtk.cc b/chrome/browser/ui/gtk/reload_button_gtk.cc index b945934..d6e2501 100644 --- a/chrome/browser/ui/gtk/reload_button_gtk.cc +++ b/chrome/browser/ui/gtk/reload_button_gtk.cc @@ -119,7 +119,7 @@ void ReloadButtonGtk::ChangeMode(Mode mode, bool force) { // Go ahead and change to reload after a bit, which allows repeated reloads // without moving the mouse. if (!stop_to_reload_timer_.IsRunning()) { - stop_to_reload_timer_.Start(FROM_HERE, stop_to_reload_timer_delay_, this, + stop_to_reload_timer_.Start(stop_to_reload_timer_delay_, this, &ReloadButtonGtk::OnStopToReloadTimer); } } @@ -185,7 +185,7 @@ void ReloadButtonGtk::OnClicked(GtkWidget* /* sender */) { // here as the browser will do that when it actually starts loading (which // may happen synchronously, thus the need to do this before telling the // browser to execute the reload command). - double_click_timer_.Start(FROM_HERE, double_click_timer_delay_, this, + double_click_timer_.Start(double_click_timer_delay_, this, &ReloadButtonGtk::OnDoubleClickTimer); if (browser_) |