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

Unified Diff: media/filters/file_data_source.cc

Issue 2267963002: Add support for cancellation of demuxer reads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix and add tests. Created 4 years, 4 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/filters/file_data_source.h ('k') | media/filters/memory_data_source.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/file_data_source.cc
diff --git a/media/filters/file_data_source.cc b/media/filters/file_data_source.cc
index 55bfc5153e00235de96feb352eb9259b0c721604..c90082d086c445dc78df346f839df35484d056db 100644
--- a/media/filters/file_data_source.cc
+++ b/media/filters/file_data_source.cc
@@ -29,8 +29,9 @@ bool FileDataSource::Initialize(const base::FilePath& file_path) {
return file_.Initialize(file_path);
}
-void FileDataSource::Stop() {
-}
+void FileDataSource::Stop() {}
+
+void FileDataSource::Abort() {}
void FileDataSource::Read(int64_t position,
int size,
« no previous file with comments | « media/filters/file_data_source.h ('k') | media/filters/memory_data_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698