| Index: webrtc/modules/audio_device/dummy/file_audio_device.h
 | 
| diff --git a/webrtc/modules/audio_device/dummy/file_audio_device.h b/webrtc/modules/audio_device/dummy/file_audio_device.h
 | 
| index 63e7e79221fa008493332dfb103dcdb35797eae3..615c1373f4ca3d4cf591ffbc6a5929a96e7417dc 100644
 | 
| --- a/webrtc/modules/audio_device/dummy/file_audio_device.h
 | 
| +++ b/webrtc/modules/audio_device/dummy/file_audio_device.h
 | 
| @@ -102,7 +102,6 @@ class FileAudioDevice : public AudioDeviceGeneric {
 | 
|    int32_t SpeakerVolume(uint32_t& volume) const override;
 | 
|    int32_t MaxSpeakerVolume(uint32_t& maxVolume) const override;
 | 
|    int32_t MinSpeakerVolume(uint32_t& minVolume) const override;
 | 
| -  int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const override;
 | 
|  
 | 
|    // Microphone volume controls
 | 
|    int32_t MicrophoneVolumeIsAvailable(bool& available) override;
 | 
| @@ -110,7 +109,6 @@ class FileAudioDevice : public AudioDeviceGeneric {
 | 
|    int32_t MicrophoneVolume(uint32_t& volume) const override;
 | 
|    int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const override;
 | 
|    int32_t MinMicrophoneVolume(uint32_t& minVolume) const override;
 | 
| -  int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const override;
 | 
|  
 | 
|    // Speaker mute control
 | 
|    int32_t SpeakerMuteIsAvailable(bool& available) override;
 | 
| @@ -122,11 +120,6 @@ class FileAudioDevice : public AudioDeviceGeneric {
 | 
|    int32_t SetMicrophoneMute(bool enable) override;
 | 
|    int32_t MicrophoneMute(bool& enabled) const override;
 | 
|  
 | 
| -  // Microphone boost control
 | 
| -  int32_t MicrophoneBoostIsAvailable(bool& available) override;
 | 
| -  int32_t SetMicrophoneBoost(bool enable) override;
 | 
| -  int32_t MicrophoneBoost(bool& enabled) const override;
 | 
| -
 | 
|    // Stereo support
 | 
|    int32_t StereoPlayoutIsAvailable(bool& available) override;
 | 
|    int32_t SetStereoPlayout(bool enable) override;
 | 
| @@ -136,16 +129,9 @@ class FileAudioDevice : public AudioDeviceGeneric {
 | 
|    int32_t StereoRecording(bool& enabled) const override;
 | 
|  
 | 
|    // Delay information and control
 | 
| -  int32_t SetPlayoutBuffer(const AudioDeviceModule::BufferType type,
 | 
| -                           uint16_t sizeMS) override;
 | 
| -  int32_t PlayoutBuffer(AudioDeviceModule::BufferType& type,
 | 
| -                        uint16_t& sizeMS) const override;
 | 
|    int32_t PlayoutDelay(uint16_t& delayMS) const override;
 | 
|    int32_t RecordingDelay(uint16_t& delayMS) const override;
 | 
|  
 | 
| -  // CPU load
 | 
| -  int32_t CPULoad(uint16_t& load) const override;
 | 
| -
 | 
|    bool PlayoutWarning() const override;
 | 
|    bool PlayoutError() const override;
 | 
|    bool RecordingWarning() const override;
 | 
| @@ -165,7 +151,6 @@ class FileAudioDevice : public AudioDeviceGeneric {
 | 
|  
 | 
|    int32_t _playout_index;
 | 
|    int32_t _record_index;
 | 
| -  AudioDeviceModule::BufferType _playBufType;
 | 
|    AudioDeviceBuffer* _ptrAudioBuffer;
 | 
|    int8_t* _recordingBuffer;  // In bytes.
 | 
|    int8_t* _playoutBuffer;  // In bytes.
 | 
| 
 |