Searched refs:remoting (Results 26 - 50 of 813) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/webapp/
H A Dtoolbar.js13 var remoting = remoting || {};
19 remoting.Toolbar = function(toolbar) {
47 * @type {remoting.MenuButton}
50 this.screenOptionsMenu_ = new remoting.MenuButton(
54 * @type {remoting.MenuButton}
57 this.sendKeysMenu_ = new remoting.MenuButton(
62 window.addEventListener('mousemove', remoting.Toolbar.onMouseMove, false);
65 registerEventListener('toolbar-disconnect', 'click', remoting.disconnect);
67 function() { remoting
[all...]
H A Dxmpp_login_handler.js8 var remoting = remoting || {};
25 * @param {function(string, remoting.XmppStreamParser):void}
28 * @param {function(remoting.Error, string):void} onErrorCallback Callback to
32 remoting.XmppLoginHandler = function(server,
55 this.state_ = remoting.XmppLoginHandler.State.INIT;
59 /** @type {remoting.XmppStreamParser} @private */
99 remoting.XmppLoginHandler.State = {
113 remoting.XmppLoginHandler.prototype.start = function() {
114 this.state_ = remoting
[all...]
H A Dhost.js13 var remoting = remoting || {};
20 remoting.Host = function() {
45 * @param {remoting.Host} host The host information from the directory.
51 remoting.Host.needsUpdate = function(host, webappVersion) {
H A Dhost_session.js7 * Class handling creation and teardown of a remoting host session.
10 * actual remoting work. There should be no UI code inside this class. It
17 var remoting = remoting || {};
22 remoting.HostSession = function() {
23 /** @type {remoting.It2MeHostFacade} @private */
30 remoting.HostSession.State = {
44 * @return {remoting.HostSession.State} The HostSession.State enum value
47 remoting.HostSession.State.fromString = function(stateString) {
48 if (!remoting
[all...]
H A Dthird_party_host_permissions.js20 var remoting = remoting || {};
28 remoting.ThirdPartyHostPermissions = function(url) {
39 remoting.ThirdPartyHostPermissions.prototype.getPermission = function(
41 /** @type {remoting.ThirdPartyHostPermissions} */
66 remoting.ThirdPartyHostPermissions.prototype.showPermissionConfirmation_ =
74 /** @type {remoting.ThirdPartyHostPermissions} */
78 remoting.setMode(remoting.AppMode.CLIENT_CONNECTING);
84 remoting
[all...]
H A Devent_handlers.js8 var remoting = remoting || {};
12 remoting.setMode(remoting.AppMode.HOME);
18 remoting.identity.callWithToken(
21 remoting.setMode(remoting.AppMode.CLIENT_UNCONNECTED);
23 remoting.showErrorMessage);
26 if (remoting.currentMode == remoting
[all...]
H A Doauth2_api.js13 var remoting = remoting || {};
16 remoting.OAuth2Api = function() {
22 remoting.OAuth2Api.getOAuth2TokenEndpoint_ = function() {
23 return remoting.settings.OAUTH2_BASE_URL + '/token';
29 remoting.OAuth2Api.getOAuth2ApiUserInfoEndpoint_ = function() {
30 return remoting.settings.OAUTH2_API_BASE_URL + '/v1/userinfo';
39 * @return {remoting.Error} An error code to be raised.
41 remoting.OAuth2Api.interpretXhrStatus_ =
45 /** @type {remoting
[all...]
H A Dstats_accumulator.js17 var remoting = remoting || {};
22 remoting.StatsAccumulator = function() {
44 remoting.StatsAccumulator.prototype.add = function(newValues) {
56 remoting.StatsAccumulator.prototype.empty = function() {
67 remoting.StatsAccumulator.prototype.getTimeSinceFirstValue = function() {
80 remoting.StatsAccumulator.prototype.calcMean = function(key) {
106 remoting.StatsAccumulator.prototype.map = function(key, map) {
119 remoting.StatsAccumulator.prototype.getValueList = function(key) {
H A Dwcs.js14 var remoting = remoting || {};
16 /** @type {remoting.Wcs} */
17 remoting.wcs = null;
21 * @param {remoting.WcsIqClient} wcsIqClient The WCS client.
25 remoting.Wcs = function(wcsIqClient, token, onReady) {
28 * @type {remoting.WcsIqClient}
74 remoting.Wcs.prototype.updateAccessToken = function(tokenNew) {
88 remoting.Wcs.prototype.onMessage_ = function(msg) {
106 remoting
[all...]
H A Dwcs_sandbox_content.js15 var remoting = remoting || {};
18 remoting.WcsSandboxContent = function() {
43 remoting.WcsSandboxContent.prototype.onMessage_ = function(event) {
52 XMLHttpRequest = remoting.XMLHttpRequestProxy;
62 if (remoting.wcs) {
63 remoting.wcs.sendIq(stanza);
76 // The WCS driver JS requires that remoting.wcsLoader be a global
78 // TODO(jamiewalch): remoting.wcs doesn't need to be global and should
80 if (remoting
[all...]
H A Dhost_install_dialog.js8 var remoting = remoting || {};
15 remoting.HostInstallDialog = function() {
33 /** @param {remoting.Error} error @private */
37 * @type {remoting.HostInstaller}
40 this.hostInstaller_ = new remoting.HostInstaller();
49 * @param {function(remoting.Error):void} onError Callback called when user
53 remoting.HostInstallDialog.prototype.show = function(onDone, onError) {
58 remoting.setMode(remoting
[all...]
H A Dsmart_reconnector.js18 var remoting = remoting || {};
22 * @param {remoting.SessionConnector} connector This is used to reconnect the
24 * @param {remoting.ClientSession} clientSession This represents the current
29 remoting.SmartReconnector = function(connector, clientSession) {
52 remoting.ClientSession.Events.stateChanged,
55 remoting.ClientSession.Events.videoChannelStateChanged,
63 remoting.SmartReconnector.kReconnectDelay = 2000;
66 remoting.SmartReconnector.kConnectionTimeout = 10000;
68 remoting
[all...]
H A Dwcs_loader.js8 * A class that loads a WCS IQ client and constructs remoting.wcs as a
15 var remoting = remoting || {};
17 /** @type {remoting.WcsLoader} */
18 remoting.wcsLoader = null;
23 remoting.WcsLoader = function() {
26 * remoting.wcsLoader) by the downloaded Javascript.
27 * @type {remoting.WcsIqClient}
37 remoting.WcsLoader.prototype.SCRIPT_NODE_ID_ = 'wcs-script-node';
42 * When it's loaded, construct remoting
[all...]
/external/chromium_org/chrome/test/remoting/
H A Dlaunch_browsertest.cc5 #include "chrome/test/remoting/remote_desktop_browsertest.h"
7 namespace remoting { namespace
19 } // namespace remoting
/external/chromium_org/remoting/base/
H A Dlogging.h10 namespace remoting { namespace
19 } // namespace remoting
H A Dresources_win.cc5 #include "remoting/base/resources.h"
7 namespace remoting { namespace
17 } // namespace remoting
/external/chromium_org/remoting/client/jni/
H A Dandroid_keymap.h11 namespace remoting { namespace
21 } // namespace remoting
/external/chromium_org/remoting/host/
H A Dhost_secret.h7 namespace remoting { namespace
12 } // namespace remoting
H A Dusername.h10 namespace remoting { namespace
16 } // namespace remoting
/external/chromium_org/remoting/host/it2me/
H A Dit2me_native_messaging_host_entry_point.cc5 #include "remoting/host/it2me/it2me_native_messaging_host_main.h"
8 return remoting::It2MeNativeMessagingHostMain(argc, argv);
H A Dit2me_native_messaging_host_main.h8 #include "remoting/host/host_export.h"
10 namespace remoting { namespace
15 } // namespace remoting
/external/chromium_org/remoting/host/setup/
H A Dme2me_native_messaging_host_entry_point.cc5 #include "remoting/host/setup/me2me_native_messaging_host_main.h"
8 return remoting::Me2MeNativeMessagingHostMain(argc, argv);
H A Dme2me_native_messaging_host_main.h8 #include "remoting/host/host_export.h"
10 namespace remoting { namespace
15 } // namespace remoting
/external/chromium_org/remoting/host/win/
H A Domaha.h8 namespace remoting { namespace
13 } // namespace remoting
/external/chromium_org/remoting/webapp/background/
H A Dbackground.js6 var remoting = remoting || {};
10 /** @param {remoting.AppLauncher} appLauncher */
41 * @param {remoting.AppLauncher} appLauncher
45 /** @type {remoting.It2MeService} */
46 remoting.it2meService = new remoting.It2MeService(appLauncher);
47 remoting.it2meService.init();
51 base.debug.assert(remoting.it2meService != null);
52 remoting
[all...]

Completed in 2736 milliseconds

1234567891011>>