Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: content/renderer/media/webrtc_audio_device_not_impl.h

Issue 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698