Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: remoting/webapp/crd/js/client_session_factory.js

Issue 1133913002: [Chromoting] Move shared webapp JS files from crd/js -> base/js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/webapp/crd/js/client_session.js ('k') | remoting/webapp/crd/js/client_session_factory_unittest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_session_factory.js
diff --git a/remoting/webapp/crd/js/client_session_factory.js b/remoting/webapp/crd/js/client_session_factory.js
deleted file mode 100644
index 24cfa2ad28f37b62431e93b9ef18337e2208606f..0000000000000000000000000000000000000000
--- a/remoting/webapp/crd/js/client_session_factory.js
+++ /dev/null
@@ -1,134 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-/** @suppress {duplicate} */
-var remoting = remoting || {};
-
-(function() {
-
-'use strict';
-
-/**
- * @param {Element} container parent element for the plugin to be created.
- * @param {Array<string>} capabilities capabilities required by this
- * application.
- * @constructor
- */
-remoting.ClientSessionFactory = function(container, capabilities) {
- /** @private */
- this.container_ = /** @type {HTMLElement} */ (container);
-
- /** @private {Array<string>} */
- this.requiredCapabilities_ = [
- remoting.ClientSession.Capability.SEND_INITIAL_RESOLUTION,
- remoting.ClientSession.Capability.RATE_LIMIT_RESIZE_REQUESTS,
- remoting.ClientSession.Capability.VIDEO_RECORDER
- ];
-
- // Append the app-specific capabilities.
- this.requiredCapabilities_.push.apply(this.requiredCapabilities_,
- capabilities);
-};
-
-/**
- * Creates a session.
- *
- * @param {remoting.ClientSession.EventHandler} listener
- * @return {Promise<!remoting.ClientSession>} Resolves with the client session
- * if succeeded or rejects with remoting.Error on failure.
- */
-remoting.ClientSessionFactory.prototype.createSession = function(listener) {
- var that = this;
- /** @type {string} */
- var token;
- /** @type {remoting.SignalStrategy} */
- var signalStrategy;
- /** @type {remoting.ClientPlugin} */
- var clientPlugin;
-
- function OnError(/** remoting.Error */ error) {
- base.dispose(signalStrategy);
- base.dispose(clientPlugin);
- throw error;
- }
-
- var promise = remoting.identity.getToken().then(
- function(/** string */ authToken) {
- token = authToken;
- return remoting.identity.getUserInfo();
- }).then(function(/** {email: string, name: string} */ userInfo) {
- return connectSignaling(userInfo.email, token);
- }).then(function(/** remoting.SignalStrategy */ strategy) {
- signalStrategy = strategy;
- return createPlugin(that.container_, that.requiredCapabilities_);
- }).then(function(/** remoting.ClientPlugin */ plugin) {
- clientPlugin = plugin;
- return new remoting.ClientSession(plugin, signalStrategy, listener);
- }).catch(
- remoting.Error.handler(OnError)
- );
-
- return /** @type {Promise<!remoting.ClientSession>} */ (promise);
-};
-
-/**
- * @param {string} email
- * @param {string} token
- * @return {Promise<!remoting.SignalStrategy>}
- */
-function connectSignaling(email, token) {
- var signalStrategy = remoting.SignalStrategy.create();
- var deferred = new base.Deferred();
- function onSignalingState(/** remoting.SignalStrategy.State */ state) {
- switch (state) {
- case remoting.SignalStrategy.State.CONNECTED:
- deferred.resolve(signalStrategy);
- break;
-
- case remoting.SignalStrategy.State.FAILED:
- var error = signalStrategy.getError();
- signalStrategy.dispose();
- deferred.reject(error);
- break;
- }
- }
- signalStrategy.setStateChangedCallback(onSignalingState);
- signalStrategy.connect(remoting.settings.XMPP_SERVER, email, token);
- return deferred.promise();
-}
-
-/**
- * Creates the plugin.
- * @param {HTMLElement} container parent element for the plugin.
- * @param {Array<string>} capabilities capabilities required by this
- * application.
- * @return {Promise<!remoting.ClientPlugin>}
- */
-function createPlugin(container, capabilities) {
- var plugin = remoting.ClientPlugin.factory.createPlugin(
- container, capabilities);
- var deferred = new base.Deferred();
-
- function onInitialized(/** boolean */ initialized) {
- if (!initialized) {
- console.error('ERROR: remoting plugin not loaded');
- plugin.dispose();
- deferred.reject(new remoting.Error(remoting.Error.Tag.MISSING_PLUGIN));
- return;
- }
-
- if (!plugin.isSupportedVersion()) {
- console.error('ERROR: bad plugin version');
- plugin.dispose();
- deferred.reject(
- new remoting.Error(remoting.Error.Tag.BAD_PLUGIN_VERSION));
- return;
- }
- deferred.resolve(plugin);
- }
- plugin.initialize(onInitialized);
- return deferred.promise();
-}
-
-})();
« no previous file with comments | « remoting/webapp/crd/js/client_session.js ('k') | remoting/webapp/crd/js/client_session_factory_unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698