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

Unified Diff: remoting/webapp/me2mom/host_plugin_proto.js

Issue 9148043: Rename webapp_it2me to remoting_webapp and move it from webapp/me2mom to webapp/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add webapp_it2me back Created 8 years, 11 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/me2mom/host_list.js ('k') | remoting/webapp/me2mom/host_screen.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/me2mom/host_plugin_proto.js
diff --git a/remoting/webapp/me2mom/host_plugin_proto.js b/remoting/webapp/me2mom/host_plugin_proto.js
deleted file mode 100644
index a64ac463acf52ab1d660a2ce887ec4be915e28f3..0000000000000000000000000000000000000000
--- a/remoting/webapp/me2mom/host_plugin_proto.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2011 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.
-
-// This file contains type definitions for the host plugin. It is used only
-// with JSCompiler to verify the type-correctness of our code.
-
-/** @suppress {duplicate} */
-var remoting = remoting || {};
-
-/** @constructor
- * @extends HTMLElement
- */
-remoting.HostPlugin = function() {};
-
-/** @param {string} email The email address of the connector.
- * @param {string} token The access token for the connector.
- * @return {void} Nothing. */
-remoting.HostPlugin.prototype.connect = function(email, token) {};
-
-/** @return {void} Nothing. */
-remoting.HostPlugin.prototype.disconnect = function() {};
-
-/** @param {function(string):string} callback Pointer to chrome.i18n.getMessage.
- * @return {void} Nothing. */
-remoting.HostPlugin.prototype.localize = function(callback) {};
-
-/** @type {number} */ remoting.HostPlugin.prototype.state;
-
-/** @type {number} */ remoting.HostPlugin.prototype.STARTING;
-/** @type {number} */ remoting.HostPlugin.prototype.REQUESTED_ACCESS_CODE;
-/** @type {number} */ remoting.HostPlugin.prototype.RECEIVED_ACCESS_CODE;
-/** @type {number} */ remoting.HostPlugin.prototype.CONNECTED;
-/** @type {number} */ remoting.HostPlugin.prototype.DISCONNECTED;
-/** @type {number} */ remoting.HostPlugin.prototype.DISCONNECTING;
-/** @type {number} */ remoting.HostPlugin.prototype.ERROR;
-
-/** @type {string} */ remoting.HostPlugin.prototype.accessCode;
-/** @type {number} */ remoting.HostPlugin.prototype.accessCodeLifetime;
-
-/** @type {string} */ remoting.HostPlugin.prototype.client;
-
-/** @type {function(boolean):void} */
-remoting.HostPlugin.prototype.onNatTraversalPolicyChanged;
« no previous file with comments | « remoting/webapp/me2mom/host_list.js ('k') | remoting/webapp/me2mom/host_screen.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698