| Index: content/browser/indexed_db/indexed_db_backing_store.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.cc b/content/browser/indexed_db/indexed_db_backing_store.cc
|
| index e09458913785c85a1b5e963db68819147f48c3a4..1f7d36672e73d2e6d6ed1aa78c4fc3fb8b7cdc11 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store.cc
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store.cc
|
| @@ -736,7 +736,7 @@ static bool DecodeBlobData(const std::string& data,
|
| } else {
|
| if (!DecodeVarInt(&slice, &size) || size < 0)
|
| return false;
|
| - ret.push_back(IndexedDBBlobInfo(type, static_cast<uint64_t>(size), key));
|
| + ret.push_back(IndexedDBBlobInfo(type, size, key));
|
| }
|
| }
|
| output->swap(ret);
|
|
|