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

Unified Diff: net/disk_cache/blockfile/addr_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/backend_unittest.cc ('k') | net/disk_cache/blockfile/backend_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/blockfile/addr_unittest.cc
diff --git a/net/disk_cache/blockfile/addr_unittest.cc b/net/disk_cache/blockfile/addr_unittest.cc
index eaed65976b249b8ee2a54fed0fdcf2a9a6a9010d..b62e31f79253d309b3813a981843bc65e286913a 100644
--- a/net/disk_cache/blockfile/addr_unittest.cc
+++ b/net/disk_cache/blockfile/addr_unittest.cc
@@ -13,7 +13,7 @@ TEST_F(DiskCacheTest, CacheAddr_Size) {
EXPECT_FALSE(addr1.is_initialized());
// The object should not be more expensive than the actual address.
- EXPECT_EQ(sizeof(uint32), sizeof(addr1));
+ EXPECT_EQ(sizeof(uint32_t), sizeof(addr1));
}
TEST_F(DiskCacheTest, CacheAddr_ValidValues) {
« no previous file with comments | « net/disk_cache/backend_unittest.cc ('k') | net/disk_cache/blockfile/backend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698