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

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

Issue 2453193004: CRD Webapp changes to support Confirmation Dialog It2Me state (Closed)
Patch Set: Merging with upstream CL and updating the connection string enum to match Created 4 years, 1 month 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/host_screen.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_session.js
diff --git a/remoting/webapp/crd/js/host_session.js b/remoting/webapp/crd/js/host_session.js
index 1736dadd82825e250a417fef44a32f1d763d2108..36de90246ad337c61993f6a901d3047fdb55ee88 100644
--- a/remoting/webapp/crd/js/host_session.js
+++ b/remoting/webapp/crd/js/host_session.js
@@ -25,8 +25,8 @@ remoting.HostSession = function() {
this.hostFacade_ = null;
};
-// Note that these values are copied directly from host_script_object.h and
-// must be kept in sync.
+// Note that these values are copied directly from it2me_host.h and must be kept
+// in sync.
/** @enum {number} */
remoting.HostSession.State = {
UNKNOWN: -1,
@@ -34,10 +34,11 @@ remoting.HostSession.State = {
STARTING: 1,
REQUESTED_ACCESS_CODE: 2,
RECEIVED_ACCESS_CODE: 3,
- CONNECTED: 4,
- DISCONNECTING: 5,
- ERROR: 6,
- INVALID_DOMAIN_ERROR: 7
+ CONNECTING: 4,
+ CONNECTED: 5,
+ DISCONNECTING: 6,
+ ERROR: 7,
+ INVALID_DOMAIN_ERROR: 8,
};
remoting.HostSession.prototype.dispose = function() {
« no previous file with comments | « remoting/webapp/crd/js/host_screen.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698