/**@class android.os.RecoverySystem.ProgressListener
 Interface definition for a callback to be invoked regularly as
 verification proceeds.
*/
var ProgressListener = {

/**Called periodically as the verification progresses.
@param {Number} progress  the approximate percentage of the
        verification that has been completed, ranging from 0
        to 100 (inclusive).
*/
onProgress : function(  ) {},


};