| 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);
|
|
|