/**@class android.media.MediaPlayer.OnDrmPreparedListener
 Interface definition of a callback to notify the app when the
 DRM is ready for key request/response
*/
var OnDrmPreparedListener = {

/**Called to notify the app that prepareDrm is finished and ready for key request/response
@param {Object {MediaPlayer}} mp the {@code MediaPlayer} associated with this callback
@param {Number} status the result of DRM preparation which can be
 {@link #PREPARE_DRM_STATUS_SUCCESS},
 {@link #PREPARE_DRM_STATUS_PROVISIONING_NETWORK_ERROR},
 {@link #PREPARE_DRM_STATUS_PROVISIONING_SERVER_ERROR}, or
 {@link #PREPARE_DRM_STATUS_PREPARATION_ERROR}.
*/
onDrmPrepared : function(  ) {},


};