HomeSort by relevance Sort by last modified time
    Searched defs:remoting (Results 101 - 125 of 682) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/remoting/host/
session_manager_factory.h 15 namespace remoting { namespace
30 } // namespace remoting
  /external/chromium_org/remoting/host/setup/
daemon_controller_delegate_linux.h 9 #include "remoting/host/setup/daemon_controller.h"
11 namespace remoting { namespace
37 } // namespace remoting
pin_validator.cc 5 #include "remoting/host/setup/pin_validator.h"
7 namespace remoting { namespace
20 } // namespace remoting
  /external/chromium_org/remoting/host/win/
com_security.h 19 namespace remoting { namespace
36 } // namespace remoting
wts_terminal_monitor.h 13 namespace remoting { namespace
57 } // namespace remoting
  /external/chromium_org/remoting/jingle_glue/
chromium_socket_factory.h 11 namespace remoting { namespace
37 } // namespace remoting
mock_objects.cc 5 #include "remoting/jingle_glue/mock_objects.h"
7 namespace remoting { namespace
12 } // namespace remoting
  /external/chromium_org/remoting/protocol/
util.h 19 namespace remoting { namespace
30 } // namespace remoting
  /external/chromium_org/remoting/webapp/
connection_stats.js 13 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.stats = null
    [all...]
error.js 8 var remoting = remoting || {};
13 remoting.Error = {
menu_button.js 13 var remoting = remoting || {};
22 remoting.MenuButton = function(container, opt_onShow) {
35 /** @type {remoting.MenuButton} */
50 that.button_.classList.add(remoting.MenuButton.BUTTON_ACTIVE_CLASS_);
68 that.button_.classList.remove(remoting.MenuButton.BUTTON_ACTIVE_CLASS_);
86 remoting.MenuButton.select = function(item, selected) {
95 remoting.MenuButton.BUTTON_ACTIVE_CLASS_ = 'active';
butter_bar.js 14 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.ButterBar.kDismissId_).addEventListener
    [all...]
host_session.js 7 * 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() {
25 /** @type {remoting.HostPlugin} */
26 remoting.HostSession.prototype.plugin = null;
31 remoting.HostSession.State = {
45 * @return {remoting.HostPlugin} The new plugin instance.
47 remoting.HostSession.createPlugin = function()
    [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...]
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...]
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.NOT_IMPLEMENTED;
94 /** @type {remoting.HostList} */
109 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 result = jsonParseSafe(allHosts[remoting.HostSettings.KEY_])
    [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.getOAuth2RevokeTokenEndpoint_ = function() {
30 return remoting.settings.OAUTH2_BASE_URL + '/revoke';
36 remoting.OAuth2Api.getOAuth2ApiUserInfoEndpoint_ = function() {
37 return remoting.settings.OAUTH2_API_BASE_URL + '/v1/userinfo';
46 * @return {remoting.Error} An error code to be raised
    [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...]
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 if (!remoting.connector) {
32 remoting.connector = new remoting.SessionConnector
    [all...]
connection_history.js 13 var remoting = remoting || {};
16 remoting.ConnectionHistory = function() {
27 /** @type {remoting.ConnectionHistory.Filter} @private */
28 this.filter_ = remoting.ConnectionHistory.Filter.VIEW_ALL;
30 /** @type {remoting.ConnectionHistory} */
43 remoting.ConnectionHistory.Filter = {
50 remoting.ConnectionHistory.prototype.show = function() {
52 remoting.setMode(remoting.AppMode.HISTORY)
    [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...]
  /external/chromium/chrome/browser/remoting/
remoting_options_handler.h 13 namespace remoting { namespace
15 // Remoting options handler is responsinble for showing correct status
29 const remoting::ChromotingHostInfo& host_info);
40 } // namespace remoting
setup_flow_login_step.h 8 #include "chrome/browser/remoting/setup_flow.h"
12 namespace remoting { namespace
14 // Implementation of login step for remoting setup flow.
55 } // namespace remoting

Completed in 950 milliseconds

1 2 3 45 6 7 8 91011>>