OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/midi/usb_midi_device_factory_android.h" | 5 #include "media/midi/usb_midi_device_factory_android.h" |
6 | 6 |
7 | 7 #include "base/android/context_utils.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
13 #include "jni/UsbMidiDeviceFactoryAndroid_jni.h" | 13 #include "jni/UsbMidiDeviceFactoryAndroid_jni.h" |
14 #include "media/midi/usb_midi_device_android.h" | 14 #include "media/midi/usb_midi_device_android.h" |
15 | 15 |
16 namespace media { | 16 namespace media { |
17 namespace midi { | 17 namespace midi { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 jint index) { | 87 jint index) { |
88 delegate_->OnDeviceDetached(index); | 88 delegate_->OnDeviceDetached(index); |
89 } | 89 } |
90 | 90 |
91 bool UsbMidiDeviceFactoryAndroid::RegisterUsbMidiDeviceFactory(JNIEnv* env) { | 91 bool UsbMidiDeviceFactoryAndroid::RegisterUsbMidiDeviceFactory(JNIEnv* env) { |
92 return RegisterNativesImpl(env); | 92 return RegisterNativesImpl(env); |
93 } | 93 } |
94 | 94 |
95 } // namespace midi | 95 } // namespace midi |
96 } // namespace media | 96 } // namespace media |
OLD | NEW |