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

Unified Diff: chromeos/network/network_event_log.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « chrome_frame/utils.cc ('k') | chromeos/settings/timezone_settings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_event_log.cc
diff --git a/chromeos/network/network_event_log.cc b/chromeos/network/network_event_log.cc
index a4f359d82c076dddea5ecc4ba40297c107a2bd9a..9c872359b4d699bf6ca9f41ec22e96d09cfdfc42 100644
--- a/chromeos/network/network_event_log.cc
+++ b/chromeos/network/network_event_log.cc
@@ -77,7 +77,7 @@ std::string LogEntry::ToString(bool show_time,
bool format_html) const {
std::string line;
if (show_time)
- line += "[" + UTF16ToUTF8(base::TimeFormatTimeOfDay(time)) + "] ";
+ line += "[" + base::UTF16ToUTF8(base::TimeFormatTimeOfDay(time)) + "] ";
if (show_file) {
std::string filestr = format_html ? net::EscapeForHTML(file) : file;
line += base::StringPrintf("%s:%d ", file.c_str(), file_line);
« no previous file with comments | « chrome_frame/utils.cc ('k') | chromeos/settings/timezone_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698