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

Unified Diff: media/audio/simple_sources.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/simple_sources.h
diff --git a/media/audio/simple_sources.h b/media/audio/simple_sources.h
index 075b4a7c7698a6d217da5cf942a5d1e8adff2b8f..7d5c3c4b87a1b57aec7c284ed993c62cf24b6822 100644
--- a/media/audio/simple_sources.h
+++ b/media/audio/simple_sources.h
@@ -99,7 +99,7 @@ class BeepingSource : public AudioOutputStream::AudioSourceCallback {
static void BeepOnce();
private:
int buffer_size_;
- scoped_ptr<uint8[]> buffer_;
+ scoped_ptr<uint8_t[]> buffer_;
AudioParameters params_;
base::TimeTicks last_callback_time_;
base::TimeDelta interval_from_last_beep_;

Powered by Google App Engine
This is Rietveld 408576698