| Index: media/filters/opus_audio_decoder.h | 
| diff --git a/media/filters/opus_audio_decoder.h b/media/filters/opus_audio_decoder.h | 
| index aa0331f1086ba4ac5c3a2965b118e39193cb1f31..5855719f44c159f21189992253e42f87d8a94afa 100644 | 
| --- a/media/filters/opus_audio_decoder.h | 
| +++ b/media/filters/opus_audio_decoder.h | 
| @@ -35,9 +35,6 @@ class MEDIA_EXPORT OpusAudioDecoder : public AudioDecoder { | 
| const PipelineStatusCB& status_cb) OVERRIDE; | 
| virtual void Decode(const scoped_refptr<DecoderBuffer>& buffer, | 
| const DecodeCB& decode_cb) OVERRIDE; | 
| -  virtual int bits_per_channel() OVERRIDE; | 
| -  virtual ChannelLayout channel_layout() OVERRIDE; | 
| -  virtual int samples_per_second() OVERRIDE; | 
| virtual void Reset(const base::Closure& closure) OVERRIDE; | 
| virtual void Stop(const base::Closure& closure) OVERRIDE; | 
|  | 
| @@ -61,12 +58,6 @@ class MEDIA_EXPORT OpusAudioDecoder : public AudioDecoder { | 
| AudioDecoderConfig config_; | 
| OpusMSDecoder* opus_decoder_; | 
|  | 
| -  // Decoded audio format. | 
| -  ChannelLayout channel_layout_; | 
| -  int samples_per_second_; | 
| -  const SampleFormat sample_format_; | 
| -  const int bits_per_channel_; | 
| - | 
| // Used for computing output timestamps. | 
| scoped_ptr<AudioTimestampHelper> output_timestamp_helper_; | 
| base::TimeDelta last_input_timestamp_; | 
|  |