diff options
| author | 2015-08-25 19:32:23 +0000 | |
|---|---|---|
| committer | 2015-08-25 19:32:23 +0000 | |
| commit | fe12a31cbccfd983198edd5bca6df894213d0ecd (patch) | |
| tree | 567af2e99729ae9820d4582031114e66ba211c92 | |
| parent | 3f7cfb2cfb3831914b8a8d6a340077415c7968b9 (diff) | |
| parent | df98fdaf2c6165dcd8bfb2ba8fd3e89d729af256 (diff) | |
am df98fdaf: am 5d636c8c: Merge "Fix AudioAttributes.usageToString() string return values" into cw-e-dev
* commit 'df98fdaf2c6165dcd8bfb2ba8fd3e89d729af256':
Fix AudioAttributes.usageToString() string return values
| -rw-r--r-- | media/java/android/media/AudioAttributes.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media/java/android/media/AudioAttributes.java b/media/java/android/media/AudioAttributes.java index 0f1be6b76d87..e92f29484dc5 100644 --- a/media/java/android/media/AudioAttributes.java +++ b/media/java/android/media/AudioAttributes.java @@ -671,15 +671,15 @@ public final class AudioAttributes implements Parcelable { case USAGE_VOICE_COMMUNICATION: return new String("USAGE_VOICE_COMMUNICATION"); case USAGE_VOICE_COMMUNICATION_SIGNALLING: - return new String("USAGE_VOICE_COMMUNICATION"); + return new String("USAGE_VOICE_COMMUNICATION_SIGNALLING"); case USAGE_ALARM: return new String("USAGE_ALARM"); case USAGE_NOTIFICATION: return new String("USAGE_NOTIFICATION"); case USAGE_NOTIFICATION_RINGTONE: - return new String("USAGE_NOTIFICATION"); + return new String("USAGE_NOTIFICATION_RINGTONE"); case USAGE_NOTIFICATION_COMMUNICATION_REQUEST: - return new String("USAGE_NOTIFICATION"); + return new String("USAGE_NOTIFICATION_COMMUNICATION_REQUEST"); case USAGE_NOTIFICATION_COMMUNICATION_INSTANT: return new String("USAGE_NOTIFICATION_COMMUNICATION_INSTANT"); case USAGE_NOTIFICATION_COMMUNICATION_DELAYED: |