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

Unified Diff: media/base/pipeline.h

Issue 5527003: Rename MediaFilter and MediaFilterCollection to Filter and FilterCollection, respectively. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src
Patch Set: Missed a few more Created 10 years 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/mock_filters.h ('k') | media/base/pipeline_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline.h
diff --git a/media/base/pipeline.h b/media/base/pipeline.h
index 5b234afb70ef89c0c0b6482d900d3bbbbea9f491..50158d22a35df9e9ec7e8a07896fa393458113cb 100644
--- a/media/base/pipeline.h
+++ b/media/base/pipeline.h
@@ -12,8 +12,6 @@
#include <string>
#include "base/callback.h"
-#include "media/base/filters.h"
-#include "media/base/media_filter_collection.h"
namespace base {
class TimeDelta;
@@ -42,6 +40,8 @@ enum PipelineError {
DEMUXER_ERROR_COULD_NOT_CREATE_THREAD,
};
+class FilterCollection;
+
// Client-provided callbacks for various pipeline operations. Clients should
// inspect the Pipeline for errors.
typedef Callback0::Type PipelineCallback;
@@ -69,7 +69,7 @@ class Pipeline : public base::RefCountedThreadSafe<Pipeline> {
// If the caller provides a |start_callback|, it will be called when the
// pipeline initialization completes. Clients are expected to call GetError()
// to check whether initialization succeeded.
- virtual bool Start(MediaFilterCollection* filter_collection,
+ virtual bool Start(FilterCollection* filter_collection,
const std::string& url,
PipelineCallback* start_callback) = 0;
« no previous file with comments | « media/base/mock_filters.h ('k') | media/base/pipeline_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698