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

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: Revised on fischman's comments. 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
Index: media/base/filters.cc
diff --git a/media/base/filters.cc b/media/base/filters.cc
index 620b5e58140a35f310900909a8aa0ee021f85d2b..b7052d9eb0f75d1a46fea0155a0ca1524523b40e 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 */) {
+ CHECK(false);
Ami GONE FROM CHROMIUM 2012/03/14 22:42:50 CHECK(false); -> LOG(FATAL) << "WAT?";
xhwang 2012/03/14 22:59:42 Done.
+}
+
+void VideoDecoder::Pause(const base::Closure& /* callback */) {
+ CHECK(false);
+}
+
+void VideoDecoder::Seek(base::TimeDelta /* time */,
+ const FilterStatusCB& /* callback */) {
+ CHECK(false);
+}
+
bool VideoDecoder::HasAlpha() const {
return false;
}
« media/base/filters.h ('K') | « 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