Index: media/filters/video_decode_engine.h |
=================================================================== |
--- media/filters/video_decode_engine.h (revision 57106) |
+++ media/filters/video_decode_engine.h (working copy) |
@@ -72,6 +72,7 @@ |
public: |
struct EventHandler { |
public: |
+ virtual ~EventHandler() {} |
Alpha Left Google
2010/08/24 23:03:33
good catch.
|
virtual void OnInitializeComplete(const VideoCodecInfo& info) = 0; |
virtual void OnUninitializeComplete() = 0; |
virtual void OnFlushComplete() = 0; |
@@ -95,7 +96,7 @@ |
const VideoCodecConfig& config) = 0; |
// Uninitialize the engine. Engine should destroy all resources and call |
- // EventHandler::OnInitializeDone(). |
+ // EventHandler::OnUninitializeComplete(). |
virtual void Uninitialize() = 0; |
// Flush the engine. Engine should return all the buffers to owner ( which |