Home
last modified time | relevance | path

Searched refs:pulse_animation_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/tabs/
Dtab.cc544 pulse_animation_.reset(new gfx::ThrobAnimation(this)); in StartPulse()
545 pulse_animation_->SetSlideDuration(kPulseDurationMs); in StartPulse()
547 pulse_animation_->SetContainer(animation_container_.get()); in StartPulse()
548 pulse_animation_->StartThrobbing(std::numeric_limits<int>::max()); in StartPulse()
552 StopAndDeleteAnimation(pulse_animation_.PassAs<gfx::Animation>()); in StopPulse()
640 if (animation == pulse_animation_.get() && IsActive()) in AnimationProgressed()
1050 if (pulse_animation_ && pulse_animation_->is_animating() && !data().mini) { in PaintImmersiveTab()
1051 alpha = pulse_animation_->CurrentValueBetween( in PaintImmersiveTab()
1454 if (pulse_animation_ && pulse_animation_->is_animating() && in GetThrobValue()
1457 return pulse_animation_->GetCurrentValue() * kHoverOpacity * scale + min; in GetThrobValue()
Dtab.h332 scoped_ptr<gfx::ThrobAnimation> pulse_animation_; variable