Index: remoting/webapp/crd/js/activity.js |
diff --git a/remoting/webapp/crd/js/activity.js b/remoting/webapp/crd/js/activity.js |
deleted file mode 100644 |
index 206073cd0938879d8e586356c7b1853d7c0710ff..0000000000000000000000000000000000000000 |
--- a/remoting/webapp/crd/js/activity.js |
+++ /dev/null |
@@ -1,38 +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'; |
- |
-/** |
- * 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() {}; |
- |
-/** |
- * Cancels or disconnects a remote connection. |
- * @return {void} |
- */ |
-remoting.Activity.prototype.stop = function() {}; |
- |
-})(); |