Bug 818291 - MediaDecoder::SetMediaSeekable should not be final; r=cpearce

This commit is contained in:
Ehsan Akhgari 2012-12-04 17:51:34 -05:00
parent 87a48f87d9
commit af29f6f12d

View File

@ -504,7 +504,7 @@ public:
void SetMediaDuration(int64_t aDuration) MOZ_FINAL MOZ_OVERRIDE;
// Set a flag indicating whether seeking is supported
virtual void SetMediaSeekable(bool aMediaSeekable) MOZ_FINAL MOZ_OVERRIDE;
virtual void SetMediaSeekable(bool aMediaSeekable) MOZ_OVERRIDE;
virtual void SetTransportSeekable(bool aTransportSeekable) MOZ_FINAL MOZ_OVERRIDE;
// Returns true if this media supports seeking. False for example for WebM
// files without an index and chained ogg files.