diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-26 23:55:38 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-26 23:55:38 +0000 |
commit | 083237baa51586b9db720facb2c07914e22bb753 (patch) | |
tree | 8eec3a9be5b57924cb04f72df34905584253473a /remoting | |
parent | c4ac450750f012be07ff2b161f8250eddc260152 (diff) | |
download | chromium_src-083237baa51586b9db720facb2c07914e22bb753.zip chromium_src-083237baa51586b9db720facb2c07914e22bb753.tar.gz chromium_src-083237baa51586b9db720facb2c07914e22bb753.tar.bz2 |
Fixed JS compiler errors.
R=rmsousa@chromium.org
Review URL: https://codereview.chromium.org/14273039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/webapp/client_screen.js | 11 | ||||
-rw-r--r-- | remoting/webapp/client_session.js | 3 | ||||
-rw-r--r-- | remoting/webapp/session_connector.js | 6 |
3 files changed, 12 insertions, 8 deletions
diff --git a/remoting/webapp/client_screen.js b/remoting/webapp/client_screen.js index 04a308e..ffd745c 100644 --- a/remoting/webapp/client_screen.js +++ b/remoting/webapp/client_screen.js @@ -251,11 +251,12 @@ remoting.connectMe2MeHostVersionAcknowledged_ = function(host) { } remoting.setMode(remoting.AppMode.CLIENT_CONNECTING); -/** - * @param {string} tokenUrl Token-issue URL received from the host. - * @param {string} scope OAuth scope to request the token for. - * @param {function(string, string):void} onThirdPartyTokenFetched Callback. - */ + /** + * @param {string} tokenUrl Token-issue URL received from the host. + * @param {string} scope OAuth scope to request the token for. + * @param {string} hostPublicKey Host public key (DER and Base64 encoded). + * @param {function(string, string):void} onThirdPartyTokenFetched Callback. + */ var fetchThirdPartyToken = function( tokenUrl, hostPublicKey, scope, onThirdPartyTokenFetched) { var thirdPartyTokenFetcher = new remoting.ThirdPartyTokenFetcher( diff --git a/remoting/webapp/client_session.js b/remoting/webapp/client_session.js index 5ba7f74..f75bdcf 100644 --- a/remoting/webapp/client_session.js +++ b/remoting/webapp/client_session.js @@ -30,7 +30,8 @@ var remoting = remoting || {}; * @param {string} accessCode The IT2Me access code. Blank for Me2Me. * @param {function(function(string): void): void} fetchPin Called by Me2Me * connections when a PIN needs to be obtained interactively. - * @param {function(string, string, function(string, string): void): void} + * @param {function(string, string, string, + * function(string, string): void): void} * fetchThirdPartyToken Called by Me2Me connections when a third party * authentication token must be obtained. * @param {string} authenticationMethods Comma-separated list of diff --git a/remoting/webapp/session_connector.js b/remoting/webapp/session_connector.js index 935cfc8..dfe9280 100644 --- a/remoting/webapp/session_connector.js +++ b/remoting/webapp/session_connector.js @@ -124,7 +124,8 @@ remoting.SessionConnector.prototype.reset = function() { this.fetchPin_ = function(onPinFetched) {}; /** - * @type {function(string, string, function(string, string):void): void} + * @type {function(string, string, string, + * function(string, string):void): void} * @private */ this.fetchThirdPartyToken_ = function( @@ -147,7 +148,8 @@ remoting.SessionConnector.prototype.reset = function() { * @param {remoting.Host} host The Me2Me host to which to connect. * @param {function(function(string):void):void} fetchPin Function to * interactively obtain the PIN from the user. - * @param {function(string, string, function(string, string): void): void} + * @param {function(string, string, string, + * function(string, string): void): void} * fetchThirdPartyToken Function to obtain a token from a third party * authenticaiton server. * @return {void} Nothing. |