Chromium Code Reviews| Index: cc/input/page_scale_animation.cc |
| diff --git a/cc/input/page_scale_animation.cc b/cc/input/page_scale_animation.cc |
| index 7df0244ec0907a1466bc2ab9625c147fe075d754..b202e56473035c4b9d8f044cae8629d5fdb3f79e 100644 |
| --- a/cc/input/page_scale_animation.cc |
| +++ b/cc/input/page_scale_animation.cc |
| @@ -40,6 +40,9 @@ gfx::Vector2dF InterpolateBetween(const gfx::Vector2dF& start, |
| namespace cc { |
| +using base::TimeTicks; |
| +using base::TimeDelta; |
| + |
| scoped_ptr<PageScaleAnimation> PageScaleAnimation::Create( |
| const gfx::Vector2dF& start_scroll_offset, |
| float start_page_scale_factor, |
| @@ -66,9 +69,10 @@ PageScaleAnimation::PageScaleAnimation( |
| target_anchor_(), |
| viewport_size_(viewport_size), |
| root_layer_size_(root_layer_size), |
| - start_time_(-1.0), |
| - duration_(0.0), |
| - timing_function_(timing_function.Pass()) {} |
| + start_time_(TimeTicks::FromInternalValue( |
| + -1.0 * base::Time::kMicrosecondsPerSecond)), |
|
aelias_OOO_until_Jul13
2014/05/13 06:00:07
This default value is a bad idea here, particularl
ajuma
2014/05/13 13:44:48
Fwiw, TimeTicks uses a (signed) int64 internally.
Sikugu_
2014/05/14 14:23:18
Done.
Sikugu_
2014/05/14 14:23:18
Done.
|
| + timing_function_(timing_function.Pass()) { |
| +} |
| PageScaleAnimation::~PageScaleAnimation() {} |
| @@ -78,7 +82,7 @@ void PageScaleAnimation::ZoomTo(const gfx::Vector2dF& target_scroll_offset, |
| target_page_scale_factor_ = target_page_scale_factor; |
| target_scroll_offset_ = target_scroll_offset; |
| ClampTargetScrollOffset(); |
| - duration_ = duration; |
| + duration_ = TimeDelta::FromSecondsD(duration); |
| if (start_page_scale_factor_ == target_page_scale_factor) { |
| start_anchor_ = start_scroll_offset_; |
| @@ -97,7 +101,7 @@ void PageScaleAnimation::ZoomWithAnchor(const gfx::Vector2dF& anchor, |
| double duration) { |
| start_anchor_ = anchor; |
| target_page_scale_factor_ = target_page_scale_factor; |
| - duration_ = duration; |
| + duration_ = TimeDelta::FromSecondsD(duration); |
| // We start zooming out from the anchor tapped by the user. But if |
| // the target scale is impossible to attain without hitting the root layer |
| @@ -163,36 +167,37 @@ gfx::SizeF PageScaleAnimation::ViewportSizeAt(float interp) const { |
| } |
| bool PageScaleAnimation::IsAnimationStarted() const { |
| - return start_time_ >= 0; |
| + return start_time_ >= base::TimeTicks(); |
| } |
| -void PageScaleAnimation::StartAnimation(double time) { |
| - DCHECK_GT(0, start_time_); |
| +void PageScaleAnimation::StartAnimation(base::TimeTicks time) { |
| + DCHECK(start_time_ < base::TimeTicks()); |
| start_time_ = time; |
| } |
| -gfx::Vector2dF PageScaleAnimation::ScrollOffsetAtTime(double time) const { |
| - DCHECK_GE(start_time_, 0); |
| +gfx::Vector2dF PageScaleAnimation::ScrollOffsetAtTime( |
| + base::TimeTicks time) const { |
| + DCHECK(start_time_ >= base::TimeTicks()); |
| return ScrollOffsetAt(InterpAtTime(time)); |
| } |
| -float PageScaleAnimation::PageScaleFactorAtTime(double time) const { |
| - DCHECK_GE(start_time_, 0); |
| +float PageScaleAnimation::PageScaleFactorAtTime(base::TimeTicks time) const { |
| + DCHECK(start_time_ >= base::TimeTicks()); |
| return PageScaleFactorAt(InterpAtTime(time)); |
| } |
| -bool PageScaleAnimation::IsAnimationCompleteAtTime(double time) const { |
| - DCHECK_GE(start_time_, 0); |
| +bool PageScaleAnimation::IsAnimationCompleteAtTime(base::TimeTicks time) const { |
| + DCHECK(start_time_ >= base::TimeTicks()); |
| return time >= end_time(); |
| } |
| -float PageScaleAnimation::InterpAtTime(double time) const { |
| - DCHECK_GE(start_time_, 0); |
| - DCHECK_GE(time, start_time_); |
| - if (IsAnimationCompleteAtTime(time)) |
| +float PageScaleAnimation::InterpAtTime(base::TimeTicks monotonic_time) const { |
| + DCHECK(start_time_ >= base::TimeTicks()); |
| + DCHECK(monotonic_time >= start_time_); |
| + if (IsAnimationCompleteAtTime(monotonic_time)) |
| return 1.f; |
| - |
| - const double normalized_time = (time - start_time_) / duration_; |
| + const double normalized_time = |
| + (monotonic_time - start_time_).InSecondsF() / duration_.InSecondsF(); |
| return timing_function_->GetValue(normalized_time); |
| } |