| Index: media/base/audio_timestamp_helper.h
|
| diff --git a/media/base/audio_timestamp_helper.h b/media/base/audio_timestamp_helper.h
|
| index 8b5d50e66f68acd004fb41675f42855455a044dc..1da8b4a7cda6d3ca796d69ea0288663ad2235fb2 100644
|
| --- a/media/base/audio_timestamp_helper.h
|
| +++ b/media/base/audio_timestamp_helper.h
|
| @@ -27,12 +27,13 @@ namespace media {
|
| // accumulated frames to reach a target timestamp.
|
| class MEDIA_EXPORT AudioTimestampHelper {
|
| public:
|
| - AudioTimestampHelper(int samples_per_second);
|
| + explicit AudioTimestampHelper(int samples_per_second);
|
|
|
| // Sets the base timestamp to |base_timestamp| and the sets count to 0.
|
| void SetBaseTimestamp(base::TimeDelta base_timestamp);
|
|
|
| base::TimeDelta base_timestamp() const;
|
| + int64 frame_count() const { return frame_count_; }
|
|
|
| // Adds |frame_count| to the frame counter.
|
| // Note: SetBaseTimestamp() must be called with a value other than
|
|
|