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

Unified Diff: webrtc/test/fake_audio_device.h

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 4 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
« no previous file with comments | « webrtc/system_wrappers/source/aligned_array_unittest.cc ('k') | webrtc/test/fake_audio_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fake_audio_device.h
diff --git a/webrtc/test/fake_audio_device.h b/webrtc/test/fake_audio_device.h
index f4442d4e5d8190e82d4df5723d786a80ffb2a844..bdc672892cf4e5aa8f81faf664c6bcb4a0ac6ff5 100644
--- a/webrtc/test/fake_audio_device.h
+++ b/webrtc/test/fake_audio_device.h
@@ -48,7 +48,7 @@ class FakeAudioDevice : public FakeAudioDeviceModule {
void CaptureAudio();
static const uint32_t kFrequencyHz = 16000;
- static const uint32_t kBufferSizeBytes = 2 * kFrequencyHz;
+ static const size_t kBufferSizeBytes = 2 * kFrequencyHz;
AudioTransport* audio_callback_;
bool capturing_;
« no previous file with comments | « webrtc/system_wrappers/source/aligned_array_unittest.cc ('k') | webrtc/test/fake_audio_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698