summaryrefslogtreecommitdiffstats
path: root/media/base/demuxer.h
diff options
context:
space:
mode:
authorfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-12 16:50:29 +0000
committerfischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-12 16:50:29 +0000
commit580a237901a89024e6a0f0d2400b448817d7b639 (patch)
tree5fc53983e6288fff09e93f01612ef2f4a01af0c8 /media/base/demuxer.h
parentc084925c810975c3050e512c2f4f237d14242f01 (diff)
downloadchromium_src-580a237901a89024e6a0f0d2400b448817d7b639.zip
chromium_src-580a237901a89024e6a0f0d2400b448817d7b639.tar.gz
chromium_src-580a237901a89024e6a0f0d2400b448817d7b639.tar.bz2
Reland r136679, reverted in r136753: Delete MockDataSource, remove IsLocalSource & IsSeekable from Demuxer/Pipeline.
MockDataSource was completely unused, and Is{LocalSource,Seekable} being in the Demuxer is leftover craxy from the DataSourceFactory / DemuxerFactory / DownloadRateMonitor days, may they forever RIP. BUG=120426 TBR=scherkus Review URL: https://chromiumcodereview.appspot.com/10392069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136770 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/demuxer.h')
-rw-r--r--media/base/demuxer.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/media/base/demuxer.h b/media/base/demuxer.h
index 1e913d4..a8cf50b 100644
--- a/media/base/demuxer.h
+++ b/media/base/demuxer.h
@@ -70,15 +70,6 @@ class MEDIA_EXPORT Demuxer : public base::RefCountedThreadSafe<Demuxer> {
// approximated. Returns 0 if it is unknown.
virtual int GetBitrate() = 0;
- // Returns true if the source is from a local file or stream (such as a
- // webcam stream), false otherwise.
- //
- // TODO(scherkus): See http://crbug.com/120426 on why we should remove this.
- virtual bool IsLocalSource() = 0;
-
- // Returns true if seeking is possible; false otherwise.
- virtual bool IsSeekable() = 0;
-
protected:
friend class base::RefCountedThreadSafe<Demuxer>;
virtual ~Demuxer();