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

Unified Diff: media/tools/player_x11/player_x11.cc

Issue 10808087: Remove use of PipelineStatus from BufferedDataSource and FileDataSource. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: status -> success Created 8 years, 5 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/tools/player_wtl/movie.cc ('k') | media/tools/seek_tester/seek_tester.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/player_x11/player_x11.cc
diff --git a/media/tools/player_x11/player_x11.cc b/media/tools/player_x11/player_x11.cc
index 83e12eff5f61b1cf9d97e280e535027bd4d96cce..df05d9d9394d0a170148a69a02f913df5664cfc6 100644
--- a/media/tools/player_x11/player_x11.cc
+++ b/media/tools/player_x11/player_x11.cc
@@ -50,7 +50,7 @@ scoped_refptr<media::FileDataSource> CreateFileDataSource(
const std::string& file) {
scoped_refptr<media::FileDataSource> file_data_source(
new media::FileDataSource());
- CHECK_EQ(file_data_source->Initialize(file), media::PIPELINE_OK);
+ CHECK(file_data_source->Initialize(file));
return file_data_source;
}
« no previous file with comments | « media/tools/player_wtl/movie.cc ('k') | media/tools/seek_tester/seek_tester.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698