Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1129)

Unified Diff: media/formats/webm/webm_info_parser.h

Issue 236023003: Add WebMediaPlayer::timelineOffset() support to WebMediaPlayerImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698