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

Side by Side Diff: media/midi/midi_output_port_android.cc

Issue 1177973003: [Web MIDI] Use Android MIDI API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "media/midi/midi_output_port_android.h"
6
7 #include "base/android/jni_array.h"
8 #include "jni/MidiOutputPortAndroid_jni.h"
9
10 namespace media {
11 namespace midi {
12
13 MidiOutputPortAndroid::MidiOutputPortAndroid(JNIEnv* env, jobject raw)
14 : raw_port_(env, raw) {}
15 MidiOutputPortAndroid::~MidiOutputPortAndroid() {
16 Close();
17 }
18
19 bool MidiOutputPortAndroid::Open() {
20 JNIEnv* env = base::android::AttachCurrentThread();
21 return Java_MidiOutputPortAndroid_open(env, raw_port_.obj());
22 }
23
24 void MidiOutputPortAndroid::Close() {
25 JNIEnv* env = base::android::AttachCurrentThread();
26 Java_MidiOutputPortAndroid_close(env, raw_port_.obj());
27 }
28
29 void MidiOutputPortAndroid::Send(const std::vector<uint8>& data) {
30 if (data.size() == 0) {
31 return;
32 }
33
34 JNIEnv* env = base::android::AttachCurrentThread();
35 ScopedJavaLocalRef<jbyteArray> data_to_pass =
36 base::android::ToJavaByteArray(env, &data[0], data.size());
37
38 Java_MidiOutputPortAndroid_send(env, raw_port_.obj(), data_to_pass.obj());
39 }
40
41 bool MidiOutputPortAndroid::Register(JNIEnv* env) {
42 return RegisterNativesImpl(env);
43 }
44
45 } // namespace midi
46 } // namespace media
OLDNEW
« media/midi/midi_manager_android.cc ('K') | « media/midi/midi_output_port_android.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698