Index: ui/base/text/text_elider.cc |
=================================================================== |
--- ui/base/text/text_elider.cc (revision 77820) |
+++ ui/base/text/text_elider.cc (working copy) |
@@ -22,10 +22,11 @@ |
namespace ui { |
+// U+2026 in utf8 |
+const char kEllipsis[] = "\xE2\x80\xA6"; |
+ |
namespace { |
-const char* kEllipsis = "\xE2\x80\xA6"; |
- |
// Cuts |text| to be |length| characters long. If |cut_in_middle| is true, the |
// middle of the string is removed to leave equal-length pieces from the |
// beginning and end of the string; otherwise, the end of the string is removed |