diff options
author | Kristian Monsen <kristianm@google.com> | 2011-05-24 16:24:13 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2011-05-25 14:13:32 +0100 |
commit | 3f50c38dc070f4bb515c1b64450dae14f316474e (patch) | |
tree | 29f309f9534e05c47244eedb438fc612578d133b /chrome/browser/gtk/hover_controller_gtk.cc | |
parent | e23bef148f7be2bdf9c3cb2cd3aa5ceebf1190fb (diff) | |
download | external_chromium-3f50c38dc070f4bb515c1b64450dae14f316474e.zip external_chromium-3f50c38dc070f4bb515c1b64450dae14f316474e.tar.gz external_chromium-3f50c38dc070f4bb515c1b64450dae14f316474e.tar.bz2 |
Merge Chromium at r10.0.634.0: Initial merge by git.
Change-Id: Iac2af492818d119bcc2562eb5fdabf5ab0b6df9c
Diffstat (limited to 'chrome/browser/gtk/hover_controller_gtk.cc')
-rw-r--r-- | chrome/browser/gtk/hover_controller_gtk.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/gtk/hover_controller_gtk.cc b/chrome/browser/gtk/hover_controller_gtk.cc index f33554a..f7fe91a 100644 --- a/chrome/browser/gtk/hover_controller_gtk.cc +++ b/chrome/browser/gtk/hover_controller_gtk.cc @@ -64,7 +64,7 @@ void HoverControllerGtk::Destroy() { delete this; } -void HoverControllerGtk::AnimationProgressed(const Animation* animation) { +void HoverControllerGtk::AnimationProgressed(const ui::Animation* animation) { if (!button_) return; @@ -76,7 +76,7 @@ void HoverControllerGtk::AnimationProgressed(const Animation* animation) { animation->GetCurrentValue()); } -void HoverControllerGtk::AnimationEnded(const Animation* animation) { +void HoverControllerGtk::AnimationEnded(const ui::Animation* animation) { if (!button_) return; if (animation != &throb_animation_) @@ -86,7 +86,7 @@ void HoverControllerGtk::AnimationEnded(const Animation* animation) { gtk_chrome_button_set_hover_state(GTK_CHROME_BUTTON(button_), 0); } -void HoverControllerGtk::AnimationCanceled(const Animation* animation) { +void HoverControllerGtk::AnimationCanceled(const ui::Animation* animation) { AnimationEnded(animation); } |