Index: webkit/glue/plugins/pepper_plugin_delegate.h |
=================================================================== |
--- webkit/glue/plugins/pepper_plugin_delegate.h (revision 66651) |
+++ webkit/glue/plugins/pepper_plugin_delegate.h (working copy) |
@@ -130,8 +130,6 @@ |
base::SyncSocket::Handle socket) = 0; |
}; |
- virtual ~PlatformAudio() {} |
- |
// Starts the playback. Returns false on error or if called before the |
// stream is created or after the stream is closed. |
virtual bool StartPlayback() = 0; |
@@ -143,6 +141,8 @@ |
// Closes the stream. Make sure to call this before the object is |
// destructed. |
virtual void ShutDown() = 0; |
darin (slow to review)
2010/11/19 17:45:39
nit: add a new line above the protected label
|
+ protected: |
+ virtual ~PlatformAudio() {} |
}; |
class PlatformVideoDecoder { |