| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 bool BuiltInNSIsAvailable() const override; | 107 bool BuiltInNSIsAvailable() const override; |
| 108 int32_t EnableBuiltInAEC(bool enable) override; | 108 int32_t EnableBuiltInAEC(bool enable) override; |
| 109 int32_t EnableBuiltInAGC(bool enable) override; | 109 int32_t EnableBuiltInAGC(bool enable) override; |
| 110 int32_t EnableBuiltInNS(bool enable) override; | 110 int32_t EnableBuiltInNS(bool enable) override; |
| 111 #if defined(OS_IOS) | 111 #if defined(OS_IOS) |
| 112 int GetPlayoutAudioParameters(AudioParameters* params) const override; | 112 int GetPlayoutAudioParameters(AudioParameters* params) const override; |
| 113 int GetRecordAudioParameters(AudioParameters* params) const override; | 113 int GetRecordAudioParameters(AudioParameters* params) const override; |
| 114 #endif // OS_IOS | 114 #endif // OS_IOS |
| 115 | 115 |
| 116 protected: | 116 protected: |
| 117 ~WebRtcAudioDeviceNotImpl() override{}; | 117 ~WebRtcAudioDeviceNotImpl() override {} |
| 118 | 118 |
| 119 private: | 119 private: |
| 120 base::TimeTicks last_process_time_; | 120 base::TimeTicks last_process_time_; |
| 121 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioDeviceNotImpl); | 121 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioDeviceNotImpl); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace content | 124 } // namespace content |
| 125 | 125 |
| 126 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ | 126 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_AUDIO_DEVICE_NOT_IMPL_H_ |
| OLD | NEW |