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

Unified Diff: webkit/appcache/view_appcache_internals_job.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
« no previous file with comments | « printing/printed_document_posix.cc ('k') | webkit/blob/view_blob_internals_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/view_appcache_internals_job.cc
===================================================================
--- webkit/appcache/view_appcache_internals_job.cc (revision 69833)
+++ webkit/appcache/view_appcache_internals_job.cc (working copy)
@@ -113,15 +113,15 @@
info->size, GetByteDisplayUnits(info->size), true)),
out);
AddLiTag(kCreationTime,
- WideToUTF8(TimeFormatFriendlyDateAndTime(
+ UTF16ToUTF8(TimeFormatFriendlyDateAndTime(
info->creation_time)),
Evan Martin 2010/12/21 23:32:56 so close to fitting on one line!
out);
AddLiTag(kLastAccessTime,
- WideToUTF8(
+ UTF16ToUTF8(
TimeFormatFriendlyDateAndTime(info->last_access_time)),
out);
AddLiTag(kLastUpdateTime,
- WideToUTF8(TimeFormatFriendlyDateAndTime(info->last_update_time)),
+ UTF16ToUTF8(TimeFormatFriendlyDateAndTime(info->last_update_time)),
out);
out->append("</ul></p></br>");
« no previous file with comments | « printing/printed_document_posix.cc ('k') | webkit/blob/view_blob_internals_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698