/**@class android.os.AppZygote
@extends java.lang.Object

 AppZygote is responsible for interfacing with an application-specific zygote.

 Application zygotes can pre-load app-specific code and data, and this interface can
 be used to spawn isolated services from such an application zygote.

 Note that we'll have only one instance of this per application / uid combination.

 @hide
*/
var AppZygote = {

/**Returns the zygote process associated with this app zygote.
 Creates the process if it's not already running.
*/
getProcess : function(  ) {},

/**Stops the Zygote and kills the zygote process.
*/
stopZygote : function(  ) {},

/**
*/
getAppInfo : function(  ) {},


};