blob: fbb7cfd5ded1196a74aed76924a07931bd8ae767 [file] [log] [blame]
// Copyright 2014 Google Inc. All Rights Reserved.
package android.service.media;
import android.content.pm.ParceledListSlice;
import android.media.session.MediaSession;
import android.os.Bundle;
/**
* Media API allows clients to browse through hierarchy of a user’s media collection,
* playback a specific media entry and interact with the now playing queue.
* @hide
*/
oneway interface IMediaBrowserServiceCallbacks {
/**
* Invoked when the connected has been established.
* @param root The root media id for browsing.
* @param session The {@link MediaSession.Token media session token} that can be used to control
* the playback of the media app.
* @param extra Extras returned by the media service.
*/
@UnsupportedAppUsage
void onConnect(String root, in MediaSession.Token session, in Bundle extras);
@UnsupportedAppUsage
void onConnectFailed();
void onLoadChildren(String mediaId, in ParceledListSlice list, in Bundle options);
/**
* Invoked when the browser service cuts off the connection with the browser.
*
* <p>The browser must also clean up any state associated with this connection, as if the
* service had been destroyed.
*/
void onDisconnect();
}