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

Unified Diff: net/log/net_log_util.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 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/log/net_log_unittest.cc ('k') | net/log/test_net_log.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/log/net_log_util.cc
diff --git a/net/log/net_log_util.cc b/net/log/net_log_util.cc
index 4d5074c73b66d728034eb63d18c20dbf2eba5128..2a82abc6f98c23ba5f44828f4b3cf9196fc73c7c 100644
--- a/net/log/net_log_util.cc
+++ b/net/log/net_log_util.cc
@@ -275,7 +275,7 @@ scoped_ptr<base::DictionaryValue> GetNetConstants() {
// actual system times. Time ticks are used throughout since they are stable
// across system clock changes.
{
- int64 tick_to_unix_time_ms =
+ int64_t tick_to_unix_time_ms =
(base::TimeTicks() - base::TimeTicks::UnixEpoch()).InMilliseconds();
// Pass it as a string, since it may be too large to fit in an integer.
« no previous file with comments | « net/log/net_log_unittest.cc ('k') | net/log/test_net_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698