Searched defs:remoting (Results 126 - 150 of 789) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/webapp/
H A Dconnection_stats.js13 var remoting = remoting || {};
19 remoting.ConnectionStats = function(statsElement) {
26 remoting.ConnectionStats.prototype.toggle = function() {
32 * @param {remoting.ClientSession.PerfStats} stats The connection statistics.
34 remoting.ConnectionStats.prototype.update = function(stats) {
82 remoting.ConnectionStats.onKeydown = function(event) {
88 remoting.stats.toggle();
92 /** @type {remoting.ConnectionStats} */
93 remoting
[all...]
H A Derror.js8 var remoting = remoting || {};
13 remoting.Error = {
H A Dgnubby_auth_handler.js14 var remoting = remoting || {};
18 * @param {!remoting.ClientSession} clientSession The client session to send
21 remoting.GnubbyAuthHandler = function(clientSession) {
29 remoting.GnubbyAuthHandler.prototype.onMessage = function(data) {
48 remoting.GnubbyAuthHandler.prototype.callback_ =
72 remoting.GnubbyAuthHandler.prototype.sendMessageToGnubbyd_ =
H A Dclient_plugin_impl.js10 * the actual remoting work. It also handles differences between
17 var remoting = remoting || {};
25 * @implements {remoting.ClientPlugin}
27 remoting.ClientPluginImpl = function(container, onExtensionMessage) {
28 this.plugin_ = remoting.ClientPluginImpl.createPluginElement_();
102 * @type {remoting.MediaSourceRenderer}
143 * @type {remoting.ClientSession.PerfStats}
146 this.perfStats_ = new remoting.ClientSession.PerfStats();
148 /** @type {remoting
[all...]
H A Dbutter_bar.js14 var remoting = remoting || {};
19 remoting.ButterBar = function() {
22 /** @type{remoting.ButterBar} */
28 remoting.kIT2MeVisitedStorageKey,
33 [remoting.ButterBar.kSurveyStorageKey_,
34 remoting.ButterBar.kHangoutsStorageKey_],
47 remoting.ButterBar.prototype.show_ =
51 var messageElement = document.getElementById(remoting.ButterBar.kMessageId_);
58 document.getElementById(remoting
[all...]
H A Dfullscreen_v1.js13 var remoting = remoting || {};
17 * @implements {remoting.Fullscreen}
19 remoting.FullscreenAppsV1 = function() {
39 remoting.FullscreenAppsV1.prototype.activate = function(
45 /** @type {remoting.Fullscreen} */
62 remoting.FullscreenAppsV1.prototype.toggle = function() {
66 remoting.FullscreenAppsV1.prototype.isActive = function() {
70 remoting.FullscreenAppsV1.prototype.addListener = function(callback) {
74 remoting
[all...]
H A Doauth2.js20 var remoting = remoting || {};
22 /** @type {remoting.OAuth2} */
23 remoting.oauth2 = null;
27 remoting.OAuth2 = function() {
32 remoting.OAuth2.prototype.KEY_REFRESH_TOKEN_ = 'oauth2-refresh-token';
34 remoting.OAuth2.prototype.KEY_ACCESS_TOKEN_ = 'oauth2-access-token';
36 remoting.OAuth2.prototype.KEY_XSRF_TOKEN_ = 'oauth2-xsrf-token';
38 remoting.OAuth2.prototype.KEY_EMAIL_ = 'remoting
[all...]
H A Doptions_menu.js13 var remoting = remoting || {};
25 remoting.OptionsMenu = function(sendCtrlAltDel, sendPrtScrn,
37 * @type {remoting.ClientSession}
63 * @param {remoting.ClientSession} clientSession The active session, or null if
66 remoting.OptionsMenu.prototype.setClientSession = function(clientSession) {
70 remoting.OptionsMenu.prototype.onShow = function() {
73 this.clientSession_.getMode() == remoting.ClientSession.Mode.IT2ME;
74 remoting.MenuButton.select(
76 remoting
[all...]
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 Dhost_table_entry.js13 var remoting = remoting || {};
17 * @param {remoting.Host} host The host, as obtained from Apiary.
20 * @param {function(remoting.HostTableEntry):void} onRename Callback for
22 * @param {function(remoting.HostTableEntry):void=} opt_onDelete Callback for
26 remoting.HostTableEntry = function(
28 /** @type {remoting.Host} */
32 /** @type {function(remoting.HostTableEntry):void} @private */
34 /** @type {undefined|function(remoting.HostTableEntry):void} @private */
58 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 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 Dsignal_strategy.js8 var remoting = remoting || {};
16 remoting.SignalStrategy = function() {};
27 remoting.SignalStrategy.State = {
36 remoting.SignalStrategy.prototype.dispose = function() {};
42 remoting.SignalStrategy.prototype.setIncomingStanzaCallback =
50 remoting.SignalStrategy.prototype.connect =
58 remoting.SignalStrategy.prototype.sendMessage = function(message) {};
60 /** @return {remoting.SignalStrategy.State} Current state */
61 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 Dvideo_frame_recorder.js13 var remoting = remoting || {};
17 * @param {remoting.ClientPlugin} plugin
19 remoting.VideoFrameRecorder = function(plugin) {
28 remoting.VideoFrameRecorder.prototype.startStopRecording = function() {
48 remoting.VideoFrameRecorder.prototype.isRecording = function() {
59 remoting.VideoFrameRecorder.prototype.handleMessage =
123 remoting.VideoFrameRecorder.prototype.onFileChosen_ = function(fileEntry) {
136 remoting.VideoFrameRecorder.prototype.onFileWriter_ = function(fileWriter) {
143 remoting
[all...]
H A Dxhr_proxy.js24 var remoting = remoting || {};
30 remoting.XMLHttpRequestProxy = function() {
44 remoting.XMLHttpRequestProxy.prototype.open = function(
55 remoting.XMLHttpRequestProxy.prototype.send = function(data) {
56 if (remoting.sandboxContent) {
58 this.xhr_id_ = remoting.sandboxContent.sendXhr(this);
62 remoting.XMLHttpRequestProxy.prototype.setRequestHeader = function(
67 remoting.XMLHttpRequestProxy.prototype.abort = function() {
69 remoting
[all...]
H A Dhost_list.js13 var remoting = remoting || {};
30 remoting.HostList = function(table, noHosts, errorMsg, errorButton,
60 * @type {Array.<remoting.HostTableEntry>}
65 * @type {Array.<remoting.Host>}
75 * @type {remoting.Host?}
80 * @type {remoting.HostController.State}
83 this.localHostState_ = remoting.HostController.State.UNKNOWN;
95 /** @type {remoting.HostList} */
110 remoting
[all...]
H A Dhost_settings.js13 var remoting = remoting || {};
16 remoting.HostSettings = {};
28 remoting.HostSettings.load = function(hostId, callback) {
37 remoting.HostSettings.loadInternal_(hostId, onDone);
50 remoting.HostSettings.save = function(hostId, options, opt_callback) {
62 newSettings[remoting.HostSettings.KEY_] = JSON.stringify(allHosts);
65 remoting.HostSettings.loadInternal_(hostId, onDone);
76 remoting.HostSettings.loadInternal_ = function(hostId, callback) {
84 var hosts = allHosts[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...]
H A Dclient_plugin.js13 var remoting = remoting || {};
19 remoting.ClientPlugin = function() {};
24 remoting.ClientPlugin.prototype.getDesktopWidth = function() {};
29 remoting.ClientPlugin.prototype.getDesktopHeight = function() {};
34 remoting.ClientPlugin.prototype.getDesktopXDpi = function() {};
39 remoting.ClientPlugin.prototype.getDesktopYDpi = function() {};
44 remoting.ClientPlugin.prototype.element = function() {};
49 remoting.ClientPlugin.prototype.initialize = function(onDone) {};
67 remoting
[all...]
H A Dclient_screen.js13 var remoting = remoting || {};
16 * @type {remoting.SessionConnector} The connector object, set when a
19 remoting.connector = null;
22 * @type {remoting.ClientSession} The client session object, set once the
25 remoting.clientSession = null;
30 remoting.connectIT2Me = function() {
31 remoting.ensureSessionConnector_();
33 remoting.setMode(remoting
[all...]
H A Dwcs_sandbox_container.js15 var remoting = remoting || {};
22 remoting.WcsSandboxContainer = function(sandbox) {
28 /** @type {function(remoting.Error):void}
56 * @param {function(remoting.Error):void} onError called in case of an error.
59 remoting.WcsSandboxContainer.prototype.connect = function(
75 remoting.WcsSandboxContainer.prototype.setOnIq = function(onIq) {
84 remoting.WcsSandboxContainer.prototype.ensureAccessTokenRefreshTimer_ =
99 remoting.WcsSandboxContainer.prototype.refreshAccessToken_ = function() {
100 remoting
[all...]
/external/chromium_org/remoting/webapp/browser_test/
H A Dmock_client_plugin.js14 var remoting = remoting || {};
18 * @implements {remoting.ClientPlugin}
20 remoting.MockClientPlugin = function(container) {
31 remoting.MockClientPlugin.prototype.dispose = function() {
37 remoting.MockClientPlugin.prototype.getDesktopWidth = function() {
41 remoting.MockClientPlugin.prototype.getDesktopHeight = function() {
45 remoting.MockClientPlugin.prototype.getDesktopXDpi = function() {
49 remoting.MockClientPlugin.prototype.getDesktopYDpi = function() {
53 remoting
[all...]
H A Dmock_session_connector.js14 var remoting = remoting || {};
18 * @implements {remoting.SessionConnector}
20 remoting.MockSessionConnector = function(clientContainer, onConnected, onError,
29 remoting.MockSessionConnector.prototype.reset = function() {
33 remoting.MockSessionConnector.prototype.connectMe2Me =
36 this.mode_ = remoting.ClientSession.Mode.ME2ME;
40 remoting.MockSessionConnector.prototype.updatePairingInfo =
44 remoting.MockSessionConnector.prototype.connectIT2Me =
46 this.mode_ = remoting
[all...]
/external/chromium_org/remoting/webapp/background/
H A Dmessage_window_helper.js8 var remoting = remoting || {};
16 remoting.MessageWindow = function(options) {
35 this.id_ = remoting.MessageWindowManager.addMessageWindow(this);
74 /** @type {remoting.MessageWindow} */
98 remoting.MessageWindow.prototype.onTimeoutHandler_ = function() {
111 remoting.MessageWindow.prototype.updateMessage = function(message) {
127 remoting.MessageWindow.prototype.close = function() {
141 remoting.MessageWindowManager.deleteMessageWindow(this.id_);
151 remoting
[all...]

Completed in 96 milliseconds

1234567891011>>