/**@class android.os.Process.ProcessStartResult
@extends java.lang.Object

 Specifies the outcome of having started a process.
 @hide
*/
var ProcessStartResult = {

/** The PID of the newly started process.
 Always >= 0.  (If the start failed, an exception will have been thrown instead.)
*/
pid : "null",
/** True if the process was started with a wrapper attached.
*/
usingWrapper : "null",

};