| Index: ash/common/system/user/login_status.cc
|
| diff --git a/ash/common/system/user/login_status.cc b/ash/common/system/user/login_status.cc
|
| index 7399ac3f1157affeb0839418c5794d1954b2f279..7daffe7c7ab79d0d1a9d5a14e8e1ced4f9307318 100644
|
| --- a/ash/common/system/user/login_status.cc
|
| +++ b/ash/common/system/user/login_status.cc
|
| @@ -37,10 +37,10 @@ base::string16 GetLocalizedSignOutStringForStatus(LoginStatus status,
|
| // framework does not evaluate escape sequences, the \n need to be explicitly
|
| // handled. Depending on the value of |multiline|, actual line breaks or
|
| // spaces are substituted.
|
| - base::string16 newline = multiline ? base::ASCIIToUTF16("\n")
|
| - : base::ASCIIToUTF16(" ");
|
| - base::ReplaceSubstringsAfterOffset(
|
| - &message, 0, base::ASCIIToUTF16("\\n"), newline);
|
| + base::string16 newline =
|
| + multiline ? base::ASCIIToUTF16("\n") : base::ASCIIToUTF16(" ");
|
| + base::ReplaceSubstringsAfterOffset(&message, 0, base::ASCIIToUTF16("\\n"),
|
| + newline);
|
| return message;
|
| }
|
|
|
|
|