Index: media/base/time_delta_interpolator.h |
diff --git a/media/base/time_delta_interpolator.h b/media/base/time_delta_interpolator.h |
index af7535da6f2673ff0a8a223ba45854cb22c2903e..7dbda69387bb1a9439d1a4997766abe0196854ff 100644 |
--- a/media/base/time_delta_interpolator.h |
+++ b/media/base/time_delta_interpolator.h |
@@ -42,7 +42,7 @@ class MEDIA_EXPORT TimeDeltaInterpolator { |
// Sets a new rate at which to interpolate. |
// |
// |tick_clock| will be queried for a new reference time value. |
- void SetPlaybackRate(float playback_rate); |
+ void SetPlaybackRate(double playback_rate); |
// Sets the two timestamps to interpolate between at |playback_rate_|. |
// |upper_bound| must be greater or equal to |lower_bound|. |
@@ -72,7 +72,7 @@ class MEDIA_EXPORT TimeDeltaInterpolator { |
// |lower_bound_| and |upper_bound_|. |
base::TimeTicks reference_; |
- float playback_rate_; |
+ double playback_rate_; |
DISALLOW_COPY_AND_ASSIGN(TimeDeltaInterpolator); |
}; |