Searched refs:animation_ (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium/chrome/browser/ui/gtk/
H A Dslide_animator_gtk.cc58 animation_.reset(new ui::SlideAnimation(this));
61 animation_->SetTweenType(ui::Tween::LINEAR);
63 animation_->SetSlideDuration(duration);
75 animation_->Show();
80 animation_->Reset(1.0);
81 animation_->Show();
82 AnimationProgressed(animation_.get());
89 animation_->Hide();
93 animation_->End();
97 animation_
[all...]
H A Dslide_animator_gtk.h99 scoped_ptr<ui::SlideAnimation> animation_; member in class:SlideAnimatorGtk
/external/chromium/chrome/browser/chromeos/
H A Dsetting_level_bubble.cc85 animation_(this) {
86 animation_.SetSlideDuration(kAnimationDurationMs);
87 animation_.SetTweenType(ui::Tween::LINEAR);
127 if (animation_.is_animating())
128 animation_.End();
129 animation_.Reset();
130 animation_.Show();
144 animation_.is_animating() ?
145 animation_.GetCurrentValue() :
151 if (animation_
[all...]
H A Dsetting_level_bubble.h80 ui::SlideAnimation animation_; member in class:chromeos::SettingLevelBubble
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar.cc16 ALLOW_THIS_IN_INITIALIZER_LIST(animation_(new ui::SlideAnimation(this))),
23 animation_->SetTweenType(ui::Tween::LINEAR);
31 animation_->Show();
33 animation_->Reset(1.0);
41 animation_->Hide();
43 animation_->Reset(0.0);
100 if (animation_->is_animating()) {
130 container_->OnInfoBarStateChanged(animation_->is_animating());
134 if (delegate_ && (animation_->GetCurrentValue() == 0.0)) {
H A Dinfobar.h51 const ui::SlideAnimation* animation() const { return animation_.get(); }
75 ui::SlideAnimation* animation() { return animation_.get(); }
101 scoped_ptr<ui::SlideAnimation> animation_; member in class:InfoBar
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dsuggested_text_view.cc25 animation_.reset(CreateAnimation());
26 animation_->Start();
31 if (animation_.get()) {
33 animation_->set_delegate(NULL);
34 animation_.reset(NULL);
42 if (!animation_.get() || animation_->GetCurrentValue() == 0)
83 if (!animation_.get()) {
88 double value = animation_->GetCurrentValue();
H A Dsuggested_text_view.h49 scoped_ptr<ui::Animation> animation_; member in class:SuggestedTextView
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_host.cc74 animation_.reset(new ui::SlideAnimation(this));
89 animation_->Reset(1);
90 AnimationProgressed(animation_.get());
95 animation_->Reset();
96 animation_->Show();
106 return animation_->is_animating();
113 animation_->Reset(1.0);
114 animation_->Hide();
123 animation_->End();
161 animation_offset_ = static_cast<int>((1.0 - animation_
[all...]
H A Ddropdown_bar_host.h152 return animation_.get();
167 scoped_ptr<ui::SlideAnimation> animation_; member in class:DropdownBarHost
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.cc18 animation_(this) {
19 animation_.SetTweenType(ui::Tween::LINEAR);
20 animation_.Reset(1.0);
29 double alpha = animation_.GetCurrentValue();
61 animation_.Reset();
62 animation_.Show();
65 animation_.Reset(1.0);
H A Dinfobar_arrow_model.h72 ui::SlideAnimation animation_; member in class:InfoBarArrowModel
/external/chromium/chrome/browser/ui/touch/frame/
H A Dtouch_browser_frame_view.cc65 animation_.reset(new ui::SlideAnimation(this));
66 animation_->SetTweenType(ui::Tween::LINEAR);
67 animation_->SetSlideDuration(kKeyboardSlideDuration);
80 keyboard_->SetVisible(keyboard_showing_ || animation_->is_animating());
82 if (animation_->is_animating() && !keyboard_showing_) {
153 animation_->Show();
160 animation_->Hide();
163 animation_->GetCurrentValue(), 0, kKeyboardHeight));
H A Dtouch_browser_frame_view.h82 scoped_ptr<ui::SlideAnimation> animation_; member in class:TouchBrowserFrameView
/external/chromium/chrome/browser/ui/views/bubble/
H A Dbubble.cc93 if (static_cast<int>(animation_->GetCurrentValue()) == 0) {
109 animation_->GetCurrentValue() * 255);
358 animation_.reset(new ui::SlideAnimation(this));
359 animation_->SetSlideDuration(kHideFadeDurationMS);
360 animation_->SetTweenType(ui::Tween::LINEAR);
362 animation_->Reset(fade_in ? 0.0 : 1.0);
364 animation_->Show();
366 animation_->Hide();
H A Dbubble.h195 scoped_ptr<ui::SlideAnimation> animation_; member in class:Bubble
/external/chromium/chrome/browser/chromeos/panels/
H A Dpanel_scroller.cc27 ALLOW_THIS_IN_INITIALIZER_LIST(animation_(this)),
30 animation_.SetTweenType(ui::Tween::EASE_IN_OUT);
31 animation_.SetSlideDuration(300);
100 animation_.Stop();
110 if (!needs_layout_ || !animation_.IsShowing())
233 animation_.Reset();
234 animation_.Show();
240 animation_.GetCurrentValue()) + animated_scroll_begin_;
H A Dpanel_scroller.h58 ui::SlideAnimation animation_; member in class:PanelScroller
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Dtab_strip_gtk.cc126 animation_(this),
139 animation_.SetSlideDuration(GetDuration());
140 animation_.SetTweenType(ui::Tween::EASE_OUT);
141 if (!animation_.IsShowing()) {
142 animation_.Reset();
143 animation_.Show();
148 animation_.Stop();
237 ui::SlideAnimation animation_; member in class:TabStripGtk::TabAnimation
293 return start_width + (delta * animation_.GetCurrentValue());
303 return start_selected_width_ + (delta * animation_
[all...]
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dcontent_setting_decoration.h67 scoped_nsobject<ContentSettingAnimationState> animation_; member in class:ContentSettingDecoration
/external/chromium/chrome/browser/ui/gtk/notifications/
H A Dballoon_view_gtk.h123 scoped_ptr<ui::SlideAnimation> animation_; member in class:BalloonViewImpl
H A Dballoon_view_gtk.cc105 animation_(NULL),
179 animation_.reset(new ui::SlideAnimation(this));
180 animation_->Show();
184 DCHECK_EQ(animation, animation_.get());
/external/chromium/chrome/browser/ui/cocoa/content_settings/
H A Dcollected_cookies_mac.h87 scoped_nsobject<NSViewAnimation> animation_; variable
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view.h158 scoped_ptr<ui::SlideAnimation> animation_; member in class:BalloonViewImpl
H A Dballoon_view.cc103 animation_(NULL),
210 animation_.reset(new ui::SlideAnimation(this));
211 animation_->Show();
222 DCHECK(animation == animation_.get());

Completed in 318 milliseconds

12