Attempt to fix FYI bots.

The FYI bots went red after https://webrtc-codereview.appspot.com/32179004/ landed.

TBR=henrika@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/36369004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7853 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
tommi@webrtc.org 2014-12-09 19:59:27 +00:00
parent 87776a8935
commit 5c32a84620

View File

@ -183,7 +183,8 @@ class AudioDeviceModule : public RefCountedModule {
virtual int32_t GetLoudspeakerStatus(bool* enabled) const = 0; virtual int32_t GetLoudspeakerStatus(bool* enabled) const = 0;
// Only supported on Android. // Only supported on Android.
virtual bool BuiltInAECIsAvailable() const = 0; // TODO(henrika): Make pure virtual after updating Chromium.
virtual bool BuiltInAECIsAvailable() const { return false; }
// Enables the built-in AEC. Only supported on Windows and Android. // Enables the built-in AEC. Only supported on Windows and Android.
// //
@ -193,7 +194,8 @@ class AudioDeviceModule : public RefCountedModule {
// 2. StopRecording() should be called before StopPlayout(). // 2. StopRecording() should be called before StopPlayout().
// The reverse order may cause garbage audio to be rendered or the // The reverse order may cause garbage audio to be rendered or the
// capture side to halt until StopRecording() is called. // capture side to halt until StopRecording() is called.
virtual int32_t EnableBuiltInAEC(bool enable) = 0; // TODO(henrika): Make pure virtual after updating Chromium.
virtual int32_t EnableBuiltInAEC(bool enable) { return -1; }
// Don't use. // Don't use.
virtual bool BuiltInAECIsEnabled() const { return false; } virtual bool BuiltInAECIsEnabled() const { return false; }