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

Unified Diff: media/audio/mac/audio_low_latency_input_mac.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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: media/audio/mac/audio_low_latency_input_mac.h
diff --git a/media/audio/mac/audio_low_latency_input_mac.h b/media/audio/mac/audio_low_latency_input_mac.h
index 982b27bb514e5dc56474a0c341a807f7ddc94b05..437b2a87827074b0b6b933300e3383deb3a21511 100644
--- a/media/audio/mac/audio_low_latency_input_mac.h
+++ b/media/audio/mac/audio_low_latency_input_mac.h
@@ -162,7 +162,7 @@ class AUAudioInputStream : public AgcAudioStream<AudioInputStream> {
// Temporary storage for recorded data. The InputProc() renders into this
// array as soon as a frame of the desired buffer size has been recorded.
- scoped_ptr<uint8[]> audio_data_buffer_;
+ scoped_ptr<uint8_t[]> audio_data_buffer_;
// True after successful Start(), false after successful Stop().
bool started_;

Powered by Google App Engine
This is Rietveld 408576698