| Index: remoting/webapp/app_remoting/js/app_remoting.js
|
| diff --git a/remoting/webapp/app_remoting/js/app_remoting.js b/remoting/webapp/app_remoting/js/app_remoting.js
|
| index 03d54683e2952a53c32adc98ef46bb4cfa387c55..f95515598f8eadef6ee8f6c571c76b47aedf2485 100644
|
| --- a/remoting/webapp/app_remoting/js/app_remoting.js
|
| +++ b/remoting/webapp/app_remoting/js/app_remoting.js
|
| @@ -184,16 +184,6 @@ remoting.AppRemoting.prototype.start = function(connector, token) {
|
| };
|
|
|
| /**
|
| - * Report an authentication error to the user. This is called in lieu of start()
|
| - * if the user cannot be authenticated or if they decline the app permissions.
|
| - *
|
| - * @param {!remoting.Error} error The failure reason.
|
| - */
|
| -remoting.AppRemoting.prototype.signInFailed = function(error) {
|
| - this.handleError(error);
|
| -};
|
| -
|
| -/**
|
| * @return {string} Application product name to be used in UI.
|
| */
|
| remoting.AppRemoting.prototype.getApplicationName = function() {
|
| @@ -359,6 +349,16 @@ remoting.AppRemoting.prototype.handleError = function(error) {
|
| };
|
|
|
| /**
|
| + * Report an authentication error to the user. This is called in lieu of start()
|
| + * if the user cannot be authenticated or if they decline the app permissions.
|
| + *
|
| + * @param {!remoting.Error} error The failure reason.
|
| + */
|
| +remoting.AppRemoting.prototype.handleAuthError = function(error) {
|
| + this.handleError(error);
|
| +};
|
| +
|
| +/**
|
| * Close the loading window before exiting.
|
| */
|
| remoting.AppRemoting.prototype.handleExit = function() {
|
|
|