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

Unified Diff: net/base/network_time_notifier.cc

Issue 112963005: Update uses of UTF conversions in courgette/, device/, extensions/, google_apis/, gpu/, ipc/, media… (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 | « net/base/net_util_win.cc ('k') | net/base/platform_mime_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_time_notifier.cc
diff --git a/net/base/network_time_notifier.cc b/net/base/network_time_notifier.cc
index 6dd0d3dde1ed9641a7870e3dc647097b52bc796f..d21b4baeb889ab470d21e1589b2d380631c735ea 100644
--- a/net/base/network_time_notifier.cc
+++ b/net/base/network_time_notifier.cc
@@ -41,7 +41,8 @@ void NetworkTimeNotifier::UpdateNetworkTime(const base::Time& network_time,
const base::TimeTicks& post_time) {
DCHECK(thread_checker_.CalledOnValidThread());
DVLOG(1) << "Network time updating to "
- << UTF16ToUTF8(base::TimeFormatFriendlyDateAndTime(network_time));
+ << base::UTF16ToUTF8(
+ base::TimeFormatFriendlyDateAndTime(network_time));
// Update network time on every request to limit dependency on ticks lag.
// TODO(mad): Find a heuristic to avoid augmenting the
// network_time_uncertainty_ too much by a particularly long latency.
« no previous file with comments | « net/base/net_util_win.cc ('k') | net/base/platform_mime_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698