Bug 898967 - Remove the unused StreamBuffer::mForgottenUpTo member; r=roc

--HG--
extra : rebase_source : ef259872ebe3e49dad71a1ca28788c0e8a6ed05f
This commit is contained in:
Ehsan Akhgari 2013-08-28 10:14:01 -04:00
parent ffcd00eaa0
commit c89889cb25

View File

@ -164,13 +164,7 @@ public:
void ForgetUpTo(TrackTicks aTime)
{
mSegment->ForgetUpTo(aTime);
#ifdef DEBUG
mForgottenUpTo = std::max<TrackTicks>(mForgottenUpTo, aTime);
#endif
}
#ifdef DEBUG
TrackTicks GetForgottenUpTo() { return mForgottenUpTo; }
#endif
protected:
friend class StreamBuffer;
@ -185,7 +179,6 @@ public:
TrackID mID;
// True when the track ends with the data in mSegment
bool mEnded;
DebugOnly<TrackTicks> mForgottenUpTo;
};
class CompareTracksByID {