| Index: media/formats/webm/webm_info_parser.h
|
| diff --git a/media/formats/webm/webm_info_parser.h b/media/formats/webm/webm_info_parser.h
|
| index 504b927a1b01441016bdd75c55dcf8300212ff8e..36aac928f90fbdb35d8b0ef0e908238ab71e6cc9 100644
|
| --- a/media/formats/webm/webm_info_parser.h
|
| +++ b/media/formats/webm/webm_info_parser.h
|
| @@ -6,6 +6,7 @@
|
| #define MEDIA_FORMATS_WEBM_WEBM_INFO_PARSER_H_
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/time/time.h"
|
| #include "media/base/media_export.h"
|
| #include "media/formats/webm/webm_parser.h"
|
|
|
| @@ -26,6 +27,7 @@ class MEDIA_EXPORT WebMInfoParser : public WebMParserClient {
|
|
|
| int64 timecode_scale() const { return timecode_scale_; }
|
| double duration() const { return duration_; }
|
| + base::Time date_utc() const { return date_utc_; }
|
|
|
| private:
|
| // WebMParserClient methods
|
| @@ -38,6 +40,7 @@ class MEDIA_EXPORT WebMInfoParser : public WebMParserClient {
|
|
|
| int64 timecode_scale_;
|
| double duration_;
|
| + base::Time date_utc_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebMInfoParser);
|
| };
|
|
|