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

Unified Diff: content/renderer/media/audio_track_recorder_unittest.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « content/renderer/media/audio_track_recorder.cc ('k') | content/renderer/media/canvas_capture_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/audio_track_recorder_unittest.cc
diff --git a/content/renderer/media/audio_track_recorder_unittest.cc b/content/renderer/media/audio_track_recorder_unittest.cc
index f000ea1065de8d67acbc13a6831c2e2e9f2c4eb3..c28e008a97e71c3ede87f9ff36f3152c5eed6b2a 100644
--- a/content/renderer/media/audio_track_recorder_unittest.cc
+++ b/content/renderer/media/audio_track_recorder_unittest.cc
@@ -4,6 +4,9 @@
#include "content/renderer/media/audio_track_recorder.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/run_loop.h"
#include "base/stl_util.h"
#include "base/strings/utf_string_conversions.h"
@@ -160,7 +163,7 @@ class AudioTrackRecorderTest : public TestWithParam<ATRTestParams> {
1000,
opus_decode_float(
opus_decoder_,
- reinterpret_cast<uint8*>(string_as_array(encoded_data.get())),
+ reinterpret_cast<uint8_t*>(string_as_array(encoded_data.get())),
encoded_data->size(), buffer_.get(), max_frames_per_buffer_, 0));
DoOnEncodedAudio(params, *encoded_data, timestamp);
« no previous file with comments | « content/renderer/media/audio_track_recorder.cc ('k') | content/renderer/media/canvas_capture_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698