| Index: media/base/video_frame.h
|
| diff --git a/media/base/video_frame.h b/media/base/video_frame.h
|
| index bc92b9a0fcaee3c460ee2cf493b2629cae7c2fc7..49fabb622c3007412349776fbdedf0097512aec1 100644
|
| --- a/media/base/video_frame.h
|
| +++ b/media/base/video_frame.h
|
| @@ -365,6 +365,8 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> {
|
| const VideoFrameMetadata* metadata() const { return &metadata_; }
|
| VideoFrameMetadata* metadata() { return &metadata_; }
|
|
|
| + // The time span between the current frame and the first frame of the stream.
|
| + // TODO(qiangchen): See above, move this into metadata.
|
| base::TimeDelta timestamp() const { return timestamp_; }
|
| void set_timestamp(base::TimeDelta timestamp) {
|
| timestamp_ = timestamp;
|
|
|