| Index: remoting/protocol/frame_consumer.h
 | 
| diff --git a/remoting/protocol/frame_consumer.h b/remoting/protocol/frame_consumer.h
 | 
| index be9c88192a213f75e635985f9021c7fac791c680..65811681fcb4cc5d1f6c48f820e7ad9effe9d3ff 100644
 | 
| --- a/remoting/protocol/frame_consumer.h
 | 
| +++ b/remoting/protocol/frame_consumer.h
 | 
| @@ -20,6 +20,8 @@ namespace protocol {
 | 
|  
 | 
|  class FrameConsumer {
 | 
|   public:
 | 
| +  virtual ~FrameConsumer() {}
 | 
| +
 | 
|    // List of supported pixel formats needed by various platforms.
 | 
|    enum PixelFormat {
 | 
|      FORMAT_BGRA,  // Used by the Pepper plugin.
 | 
| @@ -37,7 +39,6 @@ class FrameConsumer {
 | 
|  
 | 
|   protected:
 | 
|    FrameConsumer() {}
 | 
| -  virtual ~FrameConsumer() {}
 | 
|  
 | 
|   private:
 | 
|    DISALLOW_COPY_AND_ASSIGN(FrameConsumer);
 | 
| 
 |