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

Unified Diff: media/midi/midi_input_port_android.cc

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/midi/midi_input_port_android.cc
diff --git a/media/midi/midi_input_port_android.cc b/media/midi/midi_input_port_android.cc
index 0db07f3bb7ebe11801373fd547b9b8db70202037..82adffe7bf44e67c657ad97ca4198270d65a877e 100644
--- a/media/midi/midi_input_port_android.cc
+++ b/media/midi/midi_input_port_android.cc
@@ -37,7 +37,7 @@ void MidiInputPortAndroid::OnData(JNIEnv* env,
jint offset,
jint size,
jlong timestamp) {
- std::vector<uint8> bytes;
+ std::vector<uint8_t> bytes;
base::android::JavaByteArrayToByteVector(env, data, &bytes);
if (size == 0) {

Powered by Google App Engine
This is Rietveld 408576698