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

Unified Diff: ui/gfx/render_text_unittest.cc

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 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
« no previous file with comments | « third_party/leveldatabase/chromium_logger.h ('k') | ui/message_center/cocoa/status_item_view.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/render_text_unittest.cc
diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc
index 1af91357d854905f40f2516228cbe0375bf65cd2..1b7eb181903c5a476f2ec4c2efc43449fd0cd52b 100644
--- a/ui/gfx/render_text_unittest.cc
+++ b/ui/gfx/render_text_unittest.cc
@@ -29,11 +29,11 @@ namespace {
// Various weak, LTR, RTL, and Bidi string cases with three characters each.
const wchar_t kWeak[] = L" . ";
const wchar_t kLtr[] = L"abc";
-const wchar_t kLtrRtl[] = L"a"L"\x5d0\x5d1";
-const wchar_t kLtrRtlLtr[] = L"a"L"\x5d1"L"b";
+const wchar_t kLtrRtl[] = L"a" L"\x5d0\x5d1";
+const wchar_t kLtrRtlLtr[] = L"a" L"\x5d1" L"b";
const wchar_t kRtl[] = L"\x5d0\x5d1\x5d2";
-const wchar_t kRtlLtr[] = L"\x5d0\x5d1"L"a";
-const wchar_t kRtlLtrRtl[] = L"\x5d0"L"a"L"\x5d1";
+const wchar_t kRtlLtr[] = L"\x5d0\x5d1" L"a";
+const wchar_t kRtlLtrRtl[] = L"\x5d0" L"a" L"\x5d1";
// Checks whether |range| contains |index|. This is not the same as calling
// |range.Contains(ui::Range(index))| - as that would return true when
« no previous file with comments | « third_party/leveldatabase/chromium_logger.h ('k') | ui/message_center/cocoa/status_item_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698