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

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

Issue 1054273002: [Webapp Refactor] Implements remoting.Activity. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 8 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
Index: remoting/webapp/crd/js/activity.js
diff --git a/remoting/webapp/crd/js/activity.js b/remoting/webapp/crd/js/activity.js
new file mode 100644
index 0000000000000000000000000000000000000000..44e2fab03bb96d3b736877ec05e06edb117082e3
--- /dev/null
+++ b/remoting/webapp/crd/js/activity.js
@@ -0,0 +1,32 @@
+// 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';
+
+/**
+ * An Activity is a responsible for
+ * 1. Showing the appropriate UX to establish a connection with the host and
+ * create a remoting.ClientSession.
+ * 2. Handling connection failures and retrying if necessary.
+ * 3. Responding to session state changes and showing UX if necessary.
+ *
+ * @interface
+ * @extends {base.Disposable}
+ * @extends {remoting.ClientSession.EventHandler}
+ */
+remoting.Activity = function() {};
+
+/**
+ * Starts a new connection.
+ *
+ * @return {void}
+ */
+remoting.Activity.prototype.start = function() {};
+
+})();
« no previous file with comments | « remoting/webapp/crd/html/dialog_client_session_finished.html ('k') | remoting/webapp/crd/js/client_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698