Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Unified Diff: media/base/filters.cc

Issue 9700006: Move VideoDecoder out of media pipeline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/base/filters.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/filters.cc
diff --git a/media/base/filters.cc b/media/base/filters.cc
index f9a85ae5aef6071e302564e8505a0fa16b0a9882..11e7cba0ddf0c17f7c43e57785a4d921a478a323 100644
--- a/media/base/filters.cc
+++ b/media/base/filters.cc
@@ -75,6 +75,19 @@ VideoDecoder::VideoDecoder() {}
VideoDecoder::~VideoDecoder() {}
+void VideoDecoder::Play(const base::Closure& /* callback */) {
+ LOG(FATAL) << "VideoDecoder::Play is not supposed to be called.";
+}
+
+void VideoDecoder::Pause(const base::Closure& /* callback */) {
+ LOG(FATAL) << "VideoDecoder::Pause is not supposed to be called.";
+}
+
+void VideoDecoder::Seek(base::TimeDelta /* time */,
+ const PipelineStatusCB& /* callback */) {
+ LOG(FATAL) << "VideoDecoder::Seek is not supposed to be called.";
+}
+
bool VideoDecoder::HasAlpha() const {
return false;
}
« no previous file with comments | « media/base/filters.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698