Home
last modified time | relevance | path

Searched refs:onDone (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/remoting/webapp/
Dhost_daemon_facade.js73 remoting.HostDaemonFacade.PendingReply = function(type, onDone, onError) { argument
75 this.onDone = onDone;
98 remoting.HostDaemonFacade.prototype.hasFeature = function(feature, onDone) { argument
100 onDone(false);
102 onDone(this.supportedFeatures_.indexOf(feature) >= 0);
109 onDone(that.supportedFeatures_.indexOf(feature) >= 0);
128 function(message, onDone, onError) { argument
136 message.type + 'Response', onDone, onError);
167 this.handleIncomingMessage_(message, reply.onDone);
185 function(message, onDone) { argument
[all …]
Dxhr.js52 remoting.xhr.get = function(url, onDone, opt_parameters, opt_headers, argument
54 return remoting.xhr.doMethod('GET', url, onDone, opt_parameters,
73 remoting.xhr.post = function(url, onDone, opt_parameters, opt_headers, argument
75 return remoting.xhr.doMethod('POST', url, onDone, opt_parameters,
94 remoting.xhr.remove = function(url, onDone, opt_parameters, opt_headers, argument
96 return remoting.xhr.doMethod('DELETE', url, onDone, opt_parameters,
115 remoting.xhr.put = function(url, onDone, opt_parameters, opt_headers, argument
117 return remoting.xhr.doMethod('PUT', url, onDone, opt_parameters,
137 remoting.xhr.doMethod = function(methodName, url, onDone, argument
146 onDone(xhr);
Dhost_controller.js110 remoting.HostController.prototype.getConsent = function(onDone, onError) { argument
111 this.hostDaemonFacade_.getUsageStatsConsent(onDone, onError);
124 remoting.HostController.prototype.start = function(hostPin, consent, onDone, argument
160 onDone();
362 remoting.HostController.prototype.stop = function(onDone, onError) { argument
371 onDone();
406 remoting.HostController.prototype.updatePin = function(newPin, onDone, argument
414 onDone();
454 remoting.HostController.prototype.getLocalHostState = function(onDone) { argument
457 onDone((error == remoting.Error.MISSING_PLUGIN) ?
[all …]
Dhost_settings.js34 var onDone = function(requestedHost, allHosts) { function
37 remoting.HostSettings.loadInternal_(hostId, onDone);
56 var onDone = function(requestedHost, allHosts) { function
65 remoting.HostSettings.loadInternal_(hostId, onDone);
81 var onDone = function(allHosts) { function
102 chrome.storage.local.get(remoting.HostSettings.KEY_, onDone);
Doauth2_api.js72 onDone, onError, clientId, clientSecret, refreshToken) { argument
81 onDone(tokens['access_token'], tokens['expires_in']);
120 onDone, onError, clientId, clientSecret, code, redirectUri) { argument
129 onDone(tokens['refresh_token'],
164 remoting.OAuth2Api.getEmail = function(onDone, onError, token) { argument
170 onDone(result['email']);
Doauth2.js266 var onDone = function() { function
270 message['code'], message['state'], onDone);
295 remoting.OAuth2.prototype.exchangeCodeForToken = function(code, state, onDone) { argument
300 onDone();
308 this.onTokens_.bind(this, onDone), onError,
Didentity.js62 remoting.Identity.prototype.removeCachedAuthToken = function(onDone) { argument
66 chrome.identity.removeCachedAuthToken({ 'token': token }, onDone);
68 onDone();
Dhost_list.js110 remoting.HostList.prototype.load = function(onDone) { argument
124 onDone();
166 remoting.HostList.prototype.refresh = function(onDone) { argument
169 var parseHostListResponse = this.parseHostListResponse_.bind(this, onDone);
182 onDone(false);
197 remoting.HostList.prototype.parseHostListResponse_ = function(onDone, xhr) { argument
252 onDone(this.lastError_ == '');
Dhost_install_dialog.js53 remoting.HostInstallDialog.prototype.show = function(onDone, onError) { argument
61 this.onDoneHandler_ = onDone;
Dclient_plugin.js49 remoting.ClientPlugin.prototype.initialize = function(onDone) {}; argument
144 function(clientName, onDone) {}; argument
Dclient_plugin_impl.js554 remoting.ClientPluginImpl.prototype.initialize = function(onDone) { argument
556 onDone(true);
558 this.onInitializedCallback_ = onDone;
854 function(clientName, onDone) { argument
858 this.onPairingComplete_ = onDone;
Dhost_setup_dialog.js356 var onDone = function() { function
377 hostInstallDialog.show(onDone, onError);
Dclient_session.js1251 remoting.ClientSession.prototype.requestPairing = function(clientName, onDone) { argument
1253 this.plugin_.requestPairing(clientName, onDone);
/external/chromium_org/remoting/webapp/browser_test/
Dmock_client_plugin.js57 remoting.MockClientPlugin.prototype.initialize = function(onDone) { argument
58 window.setTimeout(onDone.bind(null, true), 0);
109 function(clientName, onDone) {}; argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
DTtsPlatformImpl.java88 public void onDone(final String utteranceId) { in TtsPlatformImpl()
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
Ddirectory_model.js404 var onDone = function() { method
448 onDone, onFailed, onUpdated, onCancelled);
Dfile_manager.js3816 parentEntry, name, onDone) { argument
3821 fileNameErrorPromise.then(onDone.bind(null, true), function(message) {
3822 this.alert.show(message, onDone.bind(null, false));