| Index: net/disk_cache/cache_util.h
|
| diff --git a/net/disk_cache/cache_util.h b/net/disk_cache/cache_util.h
|
| index c4baa2d6110f4200817f014090508dd49b4ebe3e..259401242770a13478511c4eb3699289cfe8b8f7 100644
|
| --- a/net/disk_cache/cache_util.h
|
| +++ b/net/disk_cache/cache_util.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef NET_DISK_CACHE_CACHE_UTIL_H_
|
| #define NET_DISK_CACHE_CACHE_UTIL_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| #include "net/base/net_export.h"
|
| #include "net/disk_cache/disk_cache.h"
|
|
|
| @@ -37,7 +38,7 @@ NET_EXPORT_PRIVATE bool DeleteCacheFile(const base::FilePath& name);
|
| bool DelayedCacheCleanup(const base::FilePath& full_path);
|
|
|
| // Returns the preferred max cache size given the available disk space.
|
| -NET_EXPORT_PRIVATE int PreferredCacheSize(int64 available);
|
| +NET_EXPORT_PRIVATE int PreferredCacheSize(int64_t available);
|
|
|
| // The default cache size should not ideally be exposed, but the blockfile
|
| // backend uses it for reasons that include testing.
|
|
|