/**@class android.media.MediaPlayer.OnDrmInfoListener
 Interface definition of a callback to be invoked when the
 DRM info becomes available
*/
var OnDrmInfoListener = {

/**Called to indicate DRM info is available
@param {Object {MediaPlayer}} mp the {@code MediaPlayer} associated with this callback
@param {Object {MediaPlayer.DrmInfo}} drmInfo DRM info of the source including PSSH, and subset
                of crypto schemes supported by this device
*/
onDrmInfo : function(  ) {},


};