summaryrefslogtreecommitdiffstats
path: root/services/java/com/android/server/SystemServer.java
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@google.com>2014-12-11 13:44:20 -0800
committerMike Lockwood <lockwood@google.com>2015-01-14 16:51:54 -0800
commit10024b3dc12a8552c1547b67810c77b865045cc8 (patch)
treead7f453999f8387077c40251355781e0d15cb4d1 /services/java/com/android/server/SystemServer.java
parent34b064a1406ebb2eb10b5b1f24c845891748c238 (diff)
downloadframeworks_base-10024b3dc12a8552c1547b67810c77b865045cc8.zip
frameworks_base-10024b3dc12a8552c1547b67810c77b865045cc8.tar.gz
frameworks_base-10024b3dc12a8552c1547b67810c77b865045cc8.tar.bz2
MidiManager updates:
MIDI ports are now implemented as file descriptors directly between the sender and receiver, so the MidiService is no longer in the message path. To facilitate the above, each port has its own file descriptor, rather than multiplexing all ports on a device through a single socket. Added a new class MidiDeviceServer, which is used by implementors of MIDI devices. This replaces the MidiVirtualDevice class (which only was included in changes that were reviewed but never submitted). The USB MIDI implementation has moved from the MIDI service to the USB service. The USB MIDI implementation uses MidiDeviceServer as its interface, so we now have a common interface for all MIDI device implementations. Change-Id: I8effd1583f344beb6c940c3a24dbf20b477a6436
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r--services/java/com/android/server/SystemServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index eca398c..7f9af31 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -74,7 +74,7 @@ import com.android.server.lights.LightsService;
import com.android.server.media.MediaRouterService;
import com.android.server.media.MediaSessionService;
import com.android.server.media.projection.MediaProjectionManagerService;
-import com.android.server.midi.MidiService;
+import com.android.server.MidiService;
import com.android.server.net.NetworkPolicyManagerService;
import com.android.server.net.NetworkStatsService;
import com.android.server.notification.NotificationManagerService;