Home | History | Annotate | Download | only in webapp

Lines Matching defs:AsyncResult

41 remoting.HostController.AsyncResult = {
50 * @return {remoting.HostController.AsyncResult} The result enum value.
52 remoting.HostController.AsyncResult.fromString = function(result) {
53 if (!remoting.HostController.AsyncResult.hasOwnProperty(result)) {
54 throw "Invalid HostController.AsyncResult: " + result;
56 return remoting.HostController.AsyncResult[result];
155 * @param {remoting.HostController.AsyncResult} result
158 if (result == remoting.HostController.AsyncResult.OK) {
161 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
374 /** @param {remoting.HostController.AsyncResult} result */
376 if (result == remoting.HostController.AsyncResult.OK) {
378 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {
411 /** @param {remoting.HostController.AsyncResult} result */
413 if (result == remoting.HostController.AsyncResult.OK) {
415 } else if (result == remoting.HostController.AsyncResult.CANCELLED) {