| Index: net/disk_cache/blockfile/sparse_control.cc
|
| diff --git a/net/disk_cache/blockfile/sparse_control.cc b/net/disk_cache/blockfile/sparse_control.cc
|
| index 926cf360f199b46dbfa84fedda4e34ee0a04bfd6..cd2997febb96f56fc583f02bcd6d4e123e4aae18 100644
|
| --- a/net/disk_cache/blockfile/sparse_control.cc
|
| +++ b/net/disk_cache/blockfile/sparse_control.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "net/disk_cache/blockfile/sparse_control.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/format_macros.h"
|
| #include "base/logging.h"
|
| @@ -253,7 +255,7 @@ int SparseControl::StartIO(SparseOperation op, int64 offset, net::IOBuffer* buf,
|
|
|
| // We only support up to 64 GB.
|
| if (static_cast<uint64>(offset) + static_cast<unsigned int>(buf_len) >=
|
| - GG_UINT64_C(0x1000000000)) {
|
| + UINT64_C(0x1000000000)) {
|
| return net::ERR_CACHE_OPERATION_NOT_SUPPORTED;
|
| }
|
|
|
|
|