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

Unified Diff: chrome/browser/bookmarks/bookmark_html_writer_unittest.cc

Issue 6064003: Update the time formatting APIs to use string16.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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
Index: chrome/browser/bookmarks/bookmark_html_writer_unittest.cc
===================================================================
--- chrome/browser/bookmarks/bookmark_html_writer_unittest.cc (revision 69833)
+++ chrome/browser/bookmarks/bookmark_html_writer_unittest.cc (working copy)
@@ -75,8 +75,7 @@
result.append(WideToUTF16Hack(entry.title));
result.append(ASCIIToUTF16(" time="));
- result.append(WideToUTF16Hack(
- base::TimeFormatFriendlyDateAndTime(entry.creation_time)));
+ result.append(base::TimeFormatFriendlyDateAndTime(entry.creation_time));
return result;
}

Powered by Google App Engine
This is Rietveld 408576698