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

Unified Diff: net/disk_cache/simple/simple_util_unittest.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/disk_cache/simple/simple_util.cc ('k') | net/disk_cache/simple/simple_version_upgrade.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/simple/simple_util_unittest.cc
diff --git a/net/disk_cache/simple/simple_util_unittest.cc b/net/disk_cache/simple/simple_util_unittest.cc
index fbda55ca8a76e9720f1245ddc0631f73de6b4f83..2956f27f17d2ce9bc49c08f09331b80bf2119125 100644
--- a/net/disk_cache/simple/simple_util_unittest.cc
+++ b/net/disk_cache/simple/simple_util_unittest.cc
@@ -47,7 +47,7 @@ TEST_F(SimpleUtilTest, GetEntryHashKey) {
}
TEST_F(SimpleUtilTest, GetEntryHashKeyFromHexString) {
- uint64 hash_key = 0;
+ uint64_t hash_key = 0;
EXPECT_TRUE(GetEntryHashKeyFromHexString("0000000005f5e0ff", &hash_key));
EXPECT_EQ(UINT64_C(99999999), hash_key);
« no previous file with comments | « net/disk_cache/simple/simple_util.cc ('k') | net/disk_cache/simple/simple_version_upgrade.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698