| Index: content/browser/indexed_db/database_impl.cc
|
| diff --git a/content/browser/indexed_db/database_impl.cc b/content/browser/indexed_db/database_impl.cc
|
| index 1037ae4a7645376351a4370000f97bd927850e9e..0ddbfef836de496e6f8edbad9eba641294473bf0 100644
|
| --- a/content/browser/indexed_db/database_impl.cc
|
| +++ b/content/browser/indexed_db/database_impl.cc
|
| @@ -280,7 +280,7 @@ void DatabaseImpl::Put(
|
| }
|
| blob_info[i] = IndexedDBBlobInfo(info->uuid, info->file->path,
|
| info->file->name, info->mime_type);
|
| - if (info->size != static_cast<uint64_t>(-1)) {
|
| + if (info->size != -1) {
|
| blob_info[i].set_last_modified(info->file->last_modified);
|
| blob_info[i].set_size(info->size);
|
| }
|
|
|