Bug 868405. Part 1: Add a few MOZ_OVERRIDES. r=jesup

--HG--
extra : rebase_source : 9fce360b62677439a353b2fb81d9bab92b659d13
This commit is contained in:
Robert O'Callahan 2013-05-30 16:44:40 +12:00
parent 0cd25518d1
commit 8b6e23f489
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ public:
TrackRate aTrackRate,
TrackTicks aTrackOffset,
uint32_t aTrackEvents,
const MediaSegment& aQueuedMedia)
const MediaSegment& aQueuedMedia) MOZ_OVERRIDE
{
if (aTrackEvents & (TRACK_EVENT_CREATED | TRACK_EVENT_ENDED)) {
nsRefPtr<TrackChange> runnable =

View File

@ -27,9 +27,9 @@ public:
TrackRate aTrackRate,
TrackTicks aTrackOffset,
uint32_t aTrackEvents,
const MediaSegment& aQueuedMedia);
const MediaSegment& aQueuedMedia) MOZ_OVERRIDE;
void NotifyFinished(MediaStreamGraph* aGraph);
void NotifyFinished(MediaStreamGraph* aGraph) MOZ_OVERRIDE;
private:
template<typename SampleFormatType> void ConvertAndDispatchAudioChunk(AudioChunk& aChunk);