summaryrefslogtreecommitdiffstats
path: root/media/base/pipeline_impl.h
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 20:24:58 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 20:24:58 +0000
commit6e8afff24ed38abebc7537d97e1735ede5ca7755 (patch)
treecfcab05a0bb7b168108744d1353722ab6ba611a5 /media/base/pipeline_impl.h
parent3b50bd3a2bb00f35e208201b54a1b4d0576c94d9 (diff)
downloadchromium_src-6e8afff24ed38abebc7537d97e1735ede5ca7755.zip
chromium_src-6e8afff24ed38abebc7537d97e1735ede5ca7755.tar.gz
chromium_src-6e8afff24ed38abebc7537d97e1735ede5ca7755.tar.bz2
Reverting r24002 due to test_shell_tests redness
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/pipeline_impl.h')
-rw-r--r--media/base/pipeline_impl.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/media/base/pipeline_impl.h b/media/base/pipeline_impl.h
index 891404a..c448106 100644
--- a/media/base/pipeline_impl.h
+++ b/media/base/pipeline_impl.h
@@ -84,7 +84,6 @@ class PipelineImpl : public Pipeline, public FilterHost {
virtual int64 GetTotalBytes() const;
virtual void GetVideoSize(size_t* width_out, size_t* height_out) const;
virtual bool IsStreaming() const;
- virtual bool IsLoaded() const;
virtual PipelineError GetError() const;
// Sets a permanent callback owned by the pipeline that will be executed when
@@ -144,7 +143,6 @@ class PipelineImpl : public Pipeline, public FilterHost {
virtual void SetBufferedBytes(int64 buffered_bytes);
virtual void SetVideoSize(size_t width, size_t height);
virtual void SetStreaming(bool streamed);
- virtual void SetLoaded(bool loaded);
virtual void NotifyEnded();
virtual void BroadcastMessage(FilterMessage message);
@@ -295,10 +293,6 @@ class PipelineImpl : public Pipeline, public FilterHost {
// source.
bool streaming_;
- // Sets by the filters to indicate whether the data source is a fully
- // loaded source.
- bool loaded_;
-
// Current volume level (from 0.0f to 1.0f). This value is set immediately
// via SetVolume() and a task is dispatched on the message loop to notify the
// filters.