diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 04:52:53 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 04:52:53 +0000 |
commit | d43ed917b1f7e8f875d2ee2aa0587512e265e28e (patch) | |
tree | 64b04bda5e59e98a387235000779a2b050f9fa2b /media | |
parent | 08e6413a6565ba434e1054a1df1c9fb778dad352 (diff) | |
download | chromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.zip chromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.tar.gz chromium_src-d43ed917b1f7e8f875d2ee2aa0587512e265e28e.tar.bz2 |
Merged with latest media pipeline and cleaned up some style stuff.
Changed WebMediaPlayerDelegateImpl to contains a PipelineImpl object rather keeping a pointer to Pipeline interface. Also added code for task coordination between pipeline thread and main thread.
Review URL: http://codereview.chromium.org/19481
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/base/pipeline_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/pipeline_impl.h b/media/base/pipeline_impl.h index 764caac..bf0a756d 100644 --- a/media/base/pipeline_impl.h +++ b/media/base/pipeline_impl.h @@ -29,7 +29,7 @@ class PipelineThread; class PipelineImpl : public Pipeline { public: PipelineImpl(); - ~PipelineImpl(); + virtual ~PipelineImpl(); // Implementation of PipelineStatus methods. virtual bool IsInitialized() const; |