diff options
author | wolenetz@chromium.org <wolenetz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-26 01:01:14 +0000 |
---|---|---|
committer | wolenetz@chromium.org <wolenetz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-26 01:01:14 +0000 |
commit | 7bbcd368fa665f189e96bd9bbfe28bf5b1c3d408 (patch) | |
tree | f676d074c0fb7e90583e3ea33e1bf9529634c184 | |
parent | 5a5c62f878a00d6b8c5ffb78fb9b8107ebe32567 (diff) | |
download | chromium_src-7bbcd368fa665f189e96bd9bbfe28bf5b1c3d408.zip chromium_src-7bbcd368fa665f189e96bd9bbfe28bf5b1c3d408.tar.gz chromium_src-7bbcd368fa665f189e96bd9bbfe28bf5b1c3d408.tar.bz2 |
Remove obsolete ChunkDemuxer::AdjustBufferTimestamps declaration
This method was previously moved into SourceState, and there is no
longer any definition of this method in ChunkDemuxer. This change
removes the obsolete method's declaration from ChunkDemuxer.
R=acolwell@chromium.org
TEST=All media_unittests pass locally on Linux.
Review URL: https://codereview.chromium.org/179043003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253314 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | media/filters/chunk_demuxer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/media/filters/chunk_demuxer.h b/media/filters/chunk_demuxer.h index 857dcfd..a87e128 100644 --- a/media/filters/chunk_demuxer.h +++ b/media/filters/chunk_demuxer.h @@ -194,10 +194,6 @@ class MEDIA_EXPORT ChunkDemuxer : public Demuxer { void OnNewMediaSegment(const std::string& source_id, base::TimeDelta start_timestamp); - // Applies |time_offset| to the timestamps of |buffers|. - void AdjustBufferTimestamps(const StreamParser::BufferQueue& buffers, - base::TimeDelta timestamp_offset); - // Returns true if |source_id| is valid, false otherwise. bool IsValidId(const std::string& source_id) const; |