From 0a60faeb6f919d1deb2ac5f8d75f5168de62ddf9 Mon Sep 17 00:00:00 2001 From: "scherkus@chromium.org" Date: Thu, 29 Jan 2009 19:33:46 +0000 Subject: Fixed up the EOL style on all /src/media source files. TBR=maruel Review URL: http://codereview.chromium.org/19641 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8903 0039d316-1c4b-4281-b951-d872f2087c98 --- media/base/filter_host.h | 4 ++-- media/base/pipeline_impl.h | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'media') diff --git a/media/base/filter_host.h b/media/base/filter_host.h index 437b3f8..42f6554 100644 --- a/media/base/filter_host.h +++ b/media/base/filter_host.h @@ -49,8 +49,8 @@ class FilterHost { // Filters must call this method to indicate that their initialization is // complete. They may call this from within their Initialize() method or may // choose call it after processing some data. - virtual void InitializationComplete() = 0; - + virtual void InitializationComplete() = 0; + // Posts a task to be executed asynchronously on the pipeline's thread. virtual void PostTask(Task* task) = 0; diff --git a/media/base/pipeline_impl.h b/media/base/pipeline_impl.h index dc46c02..764caac 100644 --- a/media/base/pipeline_impl.h +++ b/media/base/pipeline_impl.h @@ -166,10 +166,10 @@ class PipelineThread : public base::RefCountedThreadSafe, // Called by a FilterHostImpl on behalf of a filter that calls the // FilterHost::PostTask method. - void PostTask(Task* task); - - // Simple accessor used by the FilterHostImpl class to get access to the - // pipeline object. + void PostTask(Task* task); + + // Simple accessor used by the FilterHostImpl class to get access to the + // pipeline object. PipelineImpl* pipeline() const { return pipeline_; } private: @@ -183,12 +183,12 @@ class PipelineThread : public base::RefCountedThreadSafe, friend class base::RefCountedThreadSafe; virtual ~PipelineThread(); - MessageLoop* message_loop() const { return thread_.message_loop(); } - - // The following "task" methods correspond to the public methods, but these - // methods are run as the result of posting a task to the PipelineThread's - // message loop. For example, the Start method posts a task to call the - // StartTask message on the pipeline thread. + MessageLoop* message_loop() const { return thread_.message_loop(); } + + // The following "task" methods correspond to the public methods, but these + // methods are run as the result of posting a task to the PipelineThread's + // message loop. For example, the Start method posts a task to call the + // StartTask message on the pipeline thread. void StartTask(FilterFactory* filter_factory, const std::string& url, Callback1::Type* init_complete_callback); -- cgit v1.1