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

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

Issue 1067133002: Move ProtocolExtensionManager from SessionConnector into its own class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/client_plugin.js
diff --git a/remoting/webapp/crd/js/client_plugin.js b/remoting/webapp/crd/js/client_plugin.js
index 325117f51713e10483b74356dfe00193b631dc1a..e8b3f8d9a9525ebfa3672b8141d52e50198e3c38 100644
--- a/remoting/webapp/crd/js/client_plugin.js
+++ b/remoting/webapp/crd/js/client_plugin.js
@@ -24,6 +24,11 @@ remoting.ClientPlugin = function() {};
remoting.ClientPlugin.prototype.hostDesktop = function() {};
/**
+ * @return {remoting.ProtocolExtensionManager}
+ */
+remoting.ClientPlugin.prototype.extensions = function() {};
+
+/**
* @return {HTMLElement} The DOM element representing the remote session.
*/
remoting.ClientPlugin.prototype.element = function() {};
@@ -231,14 +236,6 @@ remoting.ClientPlugin.ConnectionEventHandler.prototype.onSetCapabilities =
function(capabilities) {};
/**
- * @param {string} type
- * @param {string} data
- */
-remoting.ClientPlugin.ConnectionEventHandler.prototype.onExtensionMessage =
- function(type, data) {};
-
-
-/**
* @interface
*/
remoting.ClientPluginFactory = function() {};

Powered by Google App Engine
This is Rietveld 408576698