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

Unified Diff: remoting/webapp/app_remoting/js/app_remoting.js

Issue 1073003005: Fix not-authorized error message. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simpler implementation. 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/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 cbb1506b02583ed36f7df3a039a31eb91cf9cd16..65bc53ef5d1fbe7611217baa126017a397518ddb 100644
--- a/remoting/webapp/app_remoting/js/app_remoting.js
+++ b/remoting/webapp/app_remoting/js/app_remoting.js
@@ -48,7 +48,7 @@ remoting.AppRemoting.prototype.getActivity = function() {
*/
remoting.AppRemoting.prototype.signInFailed_ = function(error) {
remoting.MessageWindow.showErrorMessage(
- chrome.i18n.getMessage(/*i18n-content*/'CONNECTION_FAILED'),
Jamie 2015/04/24 22:04:52 Connection failed is the wrong message here becaus
+ this.getApplicationName(),
chrome.i18n.getMessage(error.getTag()));
};

Powered by Google App Engine
This is Rietveld 408576698