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

Unified Diff: remoting/webapp/base/js/application.js

Issue 1022473004: [Webapp Refactor] Move key injection logic into the plugin layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removes mismatched privates Created 5 years, 9 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/app_remoting/js/app_remoting.js ('k') | remoting/webapp/crd/js/client_plugin.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/application.js
diff --git a/remoting/webapp/base/js/application.js b/remoting/webapp/base/js/application.js
index 3141ec92bb6e94ee1a31bd9d24f4adc26171d9d7..7289b0eea7cb3ae17b698a009e5b2c1678942ab5 100644
--- a/remoting/webapp/base/js/application.js
+++ b/remoting/webapp/base/js/application.js
@@ -180,8 +180,7 @@ remoting.Application.prototype.getSessionConnector = function() {
this.onConnected.bind(this),
this.onError.bind(this),
this.onConnectionFailed.bind(this),
- this.appCapabilities_,
- this.delegate_.getDefaultRemapKeys());
+ this.appCapabilities_);
}
return this.sessionConnector_;
};
@@ -267,11 +266,6 @@ remoting.Application.Delegate.prototype.signInFailed = function(error) {};
remoting.Application.Delegate.prototype.getApplicationName = function() {};
/**
- * @return {string} The default remap keys for the current platform.
- */
-remoting.Application.Delegate.prototype.getDefaultRemapKeys = function() {};
-
-/**
* Called when a new session has been connected.
*
* @param {remoting.ConnectionInfo} connectionInfo
« no previous file with comments | « remoting/webapp/app_remoting/js/app_remoting.js ('k') | remoting/webapp/crd/js/client_plugin.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698