1 /* Copyright (C) 2014 The Android Open Source Project 2 * 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 package android.media.session; 17 18 import android.content.ComponentName; 19 import android.media.IRemoteVolumeController; 20 import android.media.session.IActiveSessionsListener; 21 import android.media.session.ISession; 22 import android.media.session.ISessionCallback; 23 import android.os.Bundle; 24 import android.view.KeyEvent; 25 26 /** 27 * Interface to the MediaSessionManagerService 28 * @hide 29 */ 30 interface ISessionManager { createSession(String packageName, in ISessionCallback cb, String tag, int userId)31 ISession createSession(String packageName, in ISessionCallback cb, String tag, int userId); getSessions(in ComponentName compName, int userId)32 List<IBinder> getSessions(in ComponentName compName, int userId); dispatchMediaKeyEvent(in KeyEvent keyEvent, boolean needWakeLock)33 void dispatchMediaKeyEvent(in KeyEvent keyEvent, boolean needWakeLock); dispatchAdjustVolume(int suggestedStream, int delta, int flags)34 void dispatchAdjustVolume(int suggestedStream, int delta, int flags); addSessionsListener(in IActiveSessionsListener listener, in ComponentName compName, int userId)35 void addSessionsListener(in IActiveSessionsListener listener, in ComponentName compName, 36 int userId); removeSessionsListener(in IActiveSessionsListener listener)37 void removeSessionsListener(in IActiveSessionsListener listener); 38 39 // This is for the system volume UI only setRemoteVolumeController(in IRemoteVolumeController rvc)40 void setRemoteVolumeController(in IRemoteVolumeController rvc); 41 42 // For PhoneWindowManager to precheck media keys isGlobalPriorityActive()43 boolean isGlobalPriorityActive(); 44 }