Home
last modified time | relevance | path

Searched refs:hover_animation_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium/chrome/browser/ui/gtk/
Dhover_controller_gtk.cc14 hover_animation_(this), in HoverControllerGtk()
72 if (animation == &hover_animation_ && throb_animation_.is_animating()) in AnimationProgressed()
95 hover_animation_.Show(); in OnEnter()
104 hover_animation_.Reset(); in OnLeave()
107 hover_animation_.Hide(); in OnLeave()
119 hover_animation_.Reset(); in OnHierarchyChanged()
Dhover_controller_gtk.h59 ui::SlideAnimation hover_animation_; variable
/external/chromium/chrome/browser/ui/views/tabs/
Dbase_tab.cc356 if (!hover_animation_.get()) { in OnMouseEntered()
357 hover_animation_.reset(new ui::SlideAnimation(this)); in OnMouseEntered()
358 hover_animation_->SetContainer(animation_container_.get()); in OnMouseEntered()
359 hover_animation_->SetSlideDuration(kHoverDurationMs); in OnMouseEntered()
361 hover_animation_->SetTweenType(ui::Tween::EASE_OUT); in OnMouseEntered()
362 hover_animation_->Show(); in OnMouseEntered()
366 hover_animation_->SetTweenType(ui::Tween::EASE_IN); in OnMouseExited()
367 hover_animation_->Hide(); in OnMouseExited()
Dbase_tab.h113 return hover_animation_.get(); in hover_animation()
195 scoped_ptr<ui::SlideAnimation> hover_animation_; variable
/external/chromium/chrome/browser/ui/gtk/tabs/
Dtab_renderer_gtk.cc270 hover_animation_.reset(new ui::SlideAnimation(this)); in TabRendererGtk()
271 hover_animation_->SetSlideDuration(kHoverDurationMs); in TabRendererGtk()
1019 return hover_animation_.get() ? in GetThrobValue()
1020 kHoverOpacity * hover_animation_->GetCurrentValue() : 0; in GetThrobValue()
1065 hover_animation_->SetTweenType(ui::Tween::EASE_OUT); in OnEnterNotifyEvent()
1066 hover_animation_->Show(); in OnEnterNotifyEvent()
1072 hover_animation_->SetTweenType(ui::Tween::EASE_IN); in OnLeaveNotifyEvent()
1073 hover_animation_->Hide(); in OnLeaveNotifyEvent()
Dtab_renderer_gtk.h426 scoped_ptr<ui::SlideAnimation> hover_animation_; variable