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

Unified Diff: media/filters/decoder_base.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/filters/audio_renderer_impl.h ('k') | media/filters/decoder_base_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/decoder_base.h
diff --git a/media/filters/decoder_base.h b/media/filters/decoder_base.h
index 0dce80cfccbe1af29fff37a2c394587c3a5526d2..09650de1364212a3bc0edc91f1fb5d5cd59c5975 100644
--- a/media/filters/decoder_base.h
+++ b/media/filters/decoder_base.h
@@ -27,7 +27,7 @@ template <class Decoder, class Output>
class DecoderBase : public Decoder {
public:
- // MediaFilter implementation.
+ // Filter implementation.
virtual void Stop(FilterCallback* callback) {
this->message_loop()->PostTask(
FROM_HERE,
@@ -101,7 +101,7 @@ class DecoderBase : public Decoder {
Task* done_cb) = 0;
// Method that may be implemented by the derived class if desired. It will
- // be called from within the MediaFilter::Stop() method prior to stopping the
+ // be called from within the Filter::Stop() method prior to stopping the
// base class.
virtual void DoStop(Task* done_cb) {
AutoTaskRunner done_runner(done_cb);
« no previous file with comments | « media/filters/audio_renderer_impl.h ('k') | media/filters/decoder_base_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698