Index: chrome/browser/ui/cocoa/global_error_bubble_controller.mm |
diff --git a/chrome/browser/ui/cocoa/global_error_bubble_controller.mm b/chrome/browser/ui/cocoa/global_error_bubble_controller.mm |
index c2604d930b289a2121001188358422e3aecebc30..d62343f037aae9944845b26a45cd3f7686f2fb36 100644 |
--- a/chrome/browser/ui/cocoa/global_error_bubble_controller.mm |
+++ b/chrome/browser/ui/cocoa/global_error_bubble_controller.mm |
@@ -82,7 +82,7 @@ class Bridge : public GlobalErrorBubbleViewBase { |
[title_ setStringValue:SysUTF16ToNSString(error_->GetBubbleViewTitle())]; |
std::vector<base::string16> messages = error_->GetBubbleViewMessages(); |
- base::string16 message = JoinString(messages, '\n'); |
+ base::string16 message = base::JoinString(messages, base::ASCIIToUTF16("\n")); |
base::scoped_nsobject<NSMutableAttributedString> messageValue( |
[[NSMutableAttributedString alloc] |