Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/system/user/login_status.h" | 5 #include "ash/system/user/login_status.h" |
| 6 | 6 |
| 7 #include "ash/session_state_delegate.h" | |
| 8 #include "ash/shell.h" | |
| 7 #include "base/string_util.h" | 9 #include "base/string_util.h" |
| 8 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 9 #include "grit/ash_strings.h" | 11 #include "grit/ash_strings.h" |
| 10 #include "ui/base/resource/resource_bundle.h" | 12 #include "ui/base/resource/resource_bundle.h" |
| 11 | 13 |
| 12 namespace ash { | 14 namespace ash { |
| 13 namespace user { | 15 namespace user { |
| 14 | 16 |
| 15 base::string16 GetLocalizedSignOutStringForStatus(LoginStatus status, | 17 base::string16 GetLocalizedSignOutStringForStatus(LoginStatus status, |
| 16 bool multiline) { | 18 bool multiline) { |
| 17 int message_id; | 19 int message_id; |
| 18 switch (status) { | 20 switch (status) { |
| 19 case LOGGED_IN_GUEST: | 21 case LOGGED_IN_GUEST: |
| 20 message_id = IDS_ASH_STATUS_TRAY_EXIT_GUEST; | 22 message_id = IDS_ASH_STATUS_TRAY_EXIT_GUEST; |
| 21 break; | 23 break; |
| 22 case LOGGED_IN_RETAIL_MODE: | 24 case LOGGED_IN_RETAIL_MODE: |
| 23 message_id = IDS_ASH_STATUS_TRAY_EXIT_KIOSK; | 25 message_id = IDS_ASH_STATUS_TRAY_EXIT_KIOSK; |
| 24 break; | 26 break; |
| 25 case LOGGED_IN_PUBLIC: | 27 case LOGGED_IN_PUBLIC: |
| 26 message_id = IDS_ASH_STATUS_TRAY_EXIT_PUBLIC; | 28 message_id = IDS_ASH_STATUS_TRAY_EXIT_PUBLIC; |
| 27 break; | 29 break; |
| 28 default: | 30 default: |
| 29 message_id = IDS_ASH_STATUS_TRAY_SIGN_OUT; | 31 if (1 < ash::Shell::GetInstance()->session_state_delegate()-> |
|
James Cook
2013/05/17 14:03:25
nit: chromium-style prefers "foo == 1" to "1 == fo
Mr4D (OOO till 08-26)
2013/05/17 16:26:40
Done.
| |
| 32 NumberOfLoggedInUsers()) | |
| 33 message_id = IDS_ASH_STATUS_TRAY_SIGN_OUT_ALL; | |
| 34 else | |
| 35 message_id = IDS_ASH_STATUS_TRAY_SIGN_OUT; | |
| 30 break; | 36 break; |
| 31 } | 37 } |
| 32 base::string16 message = | 38 base::string16 message = |
| 33 ui::ResourceBundle::GetSharedInstance().GetLocalizedString(message_id); | 39 ui::ResourceBundle::GetSharedInstance().GetLocalizedString(message_id); |
| 34 // Desirable line breaking points are marked using \n. As the resource | 40 // Desirable line breaking points are marked using \n. As the resource |
| 35 // framework does not evaluate escape sequences, the \n need to be explicitly | 41 // framework does not evaluate escape sequences, the \n need to be explicitly |
| 36 // handled. Depending on the value of |multiline|, actual line breaks or | 42 // handled. Depending on the value of |multiline|, actual line breaks or |
| 37 // spaces are substituted. | 43 // spaces are substituted. |
| 38 base::string16 newline = multiline ? ASCIIToUTF16("\n") : ASCIIToUTF16(" "); | 44 base::string16 newline = multiline ? ASCIIToUTF16("\n") : ASCIIToUTF16(" "); |
| 39 ReplaceSubstringsAfterOffset(&message, 0, ASCIIToUTF16("\\n"), newline); | 45 ReplaceSubstringsAfterOffset(&message, 0, ASCIIToUTF16("\\n"), newline); |
| 40 return message; | 46 return message; |
| 41 } | 47 } |
| 42 | 48 |
| 43 } // namespace user | 49 } // namespace user |
| 44 } // namespace ash | 50 } // namespace ash |
| OLD | NEW |