| Index: net/disk_cache/blockfile/storage_block.h
|
| diff --git a/net/disk_cache/blockfile/storage_block.h b/net/disk_cache/blockfile/storage_block.h
|
| index 6db4a3101dea6248b9e0c9b2a6200ef9db5743e1..62e5349deb2fae75b7d60c73ba4167146019c39b 100644
|
| --- a/net/disk_cache/blockfile/storage_block.h
|
| +++ b/net/disk_cache/blockfile/storage_block.h
|
| @@ -7,6 +7,10 @@
|
| #ifndef NET_DISK_CACHE_BLOCKFILE_STORAGE_BLOCK_H_
|
| #define NET_DISK_CACHE_BLOCKFILE_STORAGE_BLOCK_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "net/disk_cache/blockfile/addr.h"
|
| #include "net/disk_cache/blockfile/mapped_file.h"
|
|
|
| @@ -80,7 +84,7 @@ class StorageBlock : public FileBlock {
|
| private:
|
| void AllocateData();
|
| void DeleteData();
|
| - uint32 CalculateHash() const;
|
| + uint32_t CalculateHash() const;
|
|
|
| T* data_;
|
| MappedFile* file_;
|
|
|