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

Unified Diff: webrtc/modules/audio_mixer/audio_mixer.h

Issue 2302483002: Style changes in Audio Mixer (Closed)
Patch Set: Removed size_t everywhere in favor of int. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_mixer/audio_mixer.h
diff --git a/webrtc/modules/audio_mixer/audio_mixer.h b/webrtc/modules/audio_mixer/audio_mixer.h
index 6f0329b658d7bbc781dd7e0f91c200c4fac461cf..f1595bd02600138b8569071f2440281980ecbf10 100644
--- a/webrtc/modules/audio_mixer/audio_mixer.h
+++ b/webrtc/modules/audio_mixer/audio_mixer.h
@@ -18,7 +18,6 @@
#include "webrtc/modules/include/module_common_types.h"
namespace webrtc {
-class MixerAudioSource;
class AudioMixer {
public:
@@ -53,7 +52,7 @@ class AudioMixer {
// called from a single thread. The rate and channels arguments
// specify the rate and number of channels of the mix result.
virtual void Mix(int sample_rate,
- size_t number_of_channels,
+ int number_of_channels,
AudioFrame* audio_frame_for_mixing) = 0;
// Returns true if the audio source is mixed anonymously.

Powered by Google App Engine
This is Rietveld 408576698