Lines Matching refs:onOk
45 * @param {function(string):void} onOk Function to invoke with access token if
51 remoting.Identity.prototype.callWithToken = function(onOk, onError) {
52 this.pendingCallbacks_.push(new remoting.Identity.Callbacks(onOk, onError));
63 * @param {function(string):void} onOk Callback invoked when the email
69 remoting.Identity.prototype.getEmail = function(onOk, onError) {
75 onOk(email);
106 callback.onOk(token);
143 * @param {function(string):void} onOk
148 remoting.Identity.Callbacks = function(onOk, onError) {
150 this.onOk = onOk;