| Index: content/child/webblobregistry_impl.cc
|
| diff --git a/content/child/webblobregistry_impl.cc b/content/child/webblobregistry_impl.cc
|
| index 1967c7b151a0e551cf6d0cddb17c1ff5ef0567aa..ecdc0fcf4b9051c100bcf2629239c1b0c3b79db6 100644
|
| --- a/content/child/webblobregistry_impl.cc
|
| +++ b/content/child/webblobregistry_impl.cc
|
| @@ -85,8 +85,8 @@ void WebBlobRegistryImpl::registerBlobData(const blink::WebString& uuid,
|
| // We only support filesystem URL as of now.
|
| DCHECK(GURL(data_item.fileSystemURL).SchemeIsFileSystem());
|
| builder->appendFileSystemURL(data_item.fileSystemURL,
|
| - static_cast<uint64>(data_item.offset),
|
| - static_cast<uint64>(data_item.length),
|
| + static_cast<uint64_t>(data_item.offset),
|
| + static_cast<uint64_t>(data_item.length),
|
| data_item.expectedModificationTime);
|
| break;
|
| default:
|
| @@ -238,7 +238,7 @@ void WebBlobRegistryImpl::BuilderImpl::build() {
|
| // object is the only item in the 'blob'. If we use that file blob to
|
| // create another blob, it is sent here as a 'file' item and not a blob,
|
| // and the correct size is populated.
|
| - // static_cast<uint64>(-1) == kuint64max, which is what DataElement uses
|
| + // static_cast<uint64_t>(-1) == kuint64max, which is what DataElement uses
|
| // to specificy "use the whole file".
|
| switch (item.type) {
|
| case DataElement::TYPE_BYTES:
|
|
|