/external/chromium_org/remoting/webapp/ |
client_session.js | 7 * Class handling creation and teardown of a remoting client session. 23 var remoting = remoting || {}; 41 * @param {remoting.ClientSession.Mode} mode The mode of this connection. 49 remoting.ClientSession = function(accessCode, fetchPin, fetchThirdPartyToken, 54 this.state_ = remoting.ClientSession.State.CREATED; 57 this.error_ = remoting.Error.NONE; 81 /** @type {remoting.ClientPlugin} 92 this.logToServer = new remoting.LogToServer(); 114 this.callToggleFullScreen_ = remoting.fullscreen.toggle.bind [all...] |
feedback.js | 7 var remoting = remoting || {}; 20 remoting.Feedback = function(helpIcon, helpButton, feedbackButton) { 21 var menuButton = new remoting.MenuButton(helpIcon); 42 remoting.Feedback.prototype.sendFeedback_ = function() { 48 { key: 'version', value: remoting.getExtensionInfo() }
|
host_table_entry.js | 13 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.HostTableEntry.prototype.createDom = function() [all...] |
oauth2_api.js | 13 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.Error} * [all...] |
remoting.js | 8 var remoting = remoting || {}; 10 /** @type {remoting.HostSession} */ remoting.hostSession = null; 15 remoting.isAppsV2 = false; 21 * away from the remoting namespace and into smaller objects. 23 remoting.testEvents; 49 remoting.init = function() { 55 remoting.isAppsV2 = true; 60 if (!remoting.isAppsV2) [all...] |
third_party_host_permissions.js | 20 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.setMode(remoting.AppMode.CLIENT_THIRD_PARTY_AUTH) [all...] |
client_screen.js | 13 var remoting = remoting || {}; 16 * @type {remoting.SessionConnector} The connector object, set when a connection 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.AppMode.CLIENT_CONNECTING) [all...] |
client_plugin.js | 10 * the actual remoting work. It also handles differences between 17 var remoting = remoting || {}; 20 * @param {remoting.ViewerPlugin} plugin The plugin embed element. 26 remoting.ClientPlugin = function(plugin, onExtensionMessage) { 67 /** @type {remoting.MediaSourceRenderer} */ 84 /** @type {remoting.ClientSession.PerfStats} */ 85 this.perfStats_ = new remoting.ClientSession.PerfStats(); 87 /** @type {remoting.ClientPlugin} */ 94 if (remoting.settings.CLIENT_PLUGIN_TYPE == 'native') [all...] |
xhr_proxy.js | 24 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.sandboxContent.abortXhr(this.xhr_id_) [all...] |
host_list.js | 13 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.HostList.prototype.load = function(onDone) [all...] |
host_settings.js | 13 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.HostSettings.KEY_] [all...] |
wcs_loader.js | 8 * 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.wcs as a wrapper for it [all...] |
wcs_sandbox_container.js | 15 var remoting = remoting || {}; 22 remoting.WcsSandboxContainer = function(sandbox) { 28 /** @type {function(remoting.Error):void} 45 if (remoting.isAppsV2) { 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() [all...] |
host_screen.js | 13 var remoting = remoting || {}; 28 remoting.tryShare = function() { 29 /** @type {remoting.HostIt2MeDispatcher} */ 30 var hostDispatcher = new remoting.HostIt2MeDispatcher(); 32 /** @type {remoting.HostInstallDialog} */ 42 remoting.startHostUsingDispatcher_(hostDispatcher); 45 /** @param {remoting.Error} error */ 47 if (error != remoting.Error.MISSING_PLUGIN) { 56 hostInstallDialog = new remoting.HostInstallDialog() [all...] |
/external/chromium_org/remoting/base/ |
resources_mac.cc | 5 #include "remoting/base/resources.h" 15 namespace remoting { namespace 45 } // namespace remoting
|
resources_unittest.cc | 5 #include "remoting/base/resources.h" 7 #include "remoting/base/string_resources.h" 11 namespace remoting { namespace 51 } // namespace remoting
|
/external/chromium_org/remoting/client/plugin/ |
normalizing_input_filter_mac.h | 7 #include "remoting/protocol/input_filter.h" 9 namespace remoting { namespace 65 } // namespace remoting
|
pepper_packet_socket_factory.h | 12 namespace remoting { namespace 41 } // namespace remoting
|
pepper_plugin_thread_delegate.cc | 5 #include "remoting/client/plugin/pepper_plugin_thread_delegate.h" 10 namespace remoting { namespace 31 } // namespace remoting
|
/external/chromium_org/remoting/codec/ |
audio_decoder_verbatim.cc | 5 #include "remoting/codec/audio_decoder_verbatim.h" 8 #include "remoting/proto/audio.pb.h" 10 namespace remoting { namespace 34 } // namespace remoting
|
audio_encoder.h | 10 namespace remoting { namespace 21 } // namespace remoting
|
audio_encoder_verbatim.cc | 5 #include "remoting/codec/audio_encoder_verbatim.h" 8 #include "remoting/proto/audio.pb.h" 10 namespace remoting { namespace 26 } // namespace remoting
|
scoped_vpx_codec.h | 14 namespace remoting { namespace 22 } // namespace remoting
|
video_encoder_verbatim.h | 8 #include "remoting/codec/video_encoder.h" 9 #include "remoting/proto/video.pb.h" 12 namespace remoting { namespace 34 } // namespace remoting
|
/external/chromium_org/remoting/host/ |
branding.cc | 5 #include "remoting/host/branding.h" 35 namespace remoting { namespace 55 } // namespace remoting
|