Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: storage/browser/blob/blob_data_builder.cc

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sql/meta_table.cc ('k') | storage/browser/blob/blob_storage_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/blob/blob_data_builder.cc
diff --git a/storage/browser/blob/blob_data_builder.cc b/storage/browser/blob/blob_data_builder.cc
index 273067935674070fbd10637690fe64e7481a2acb..d352f13bd35df6ce84f401226da15cda21a3e3c1 100644
--- a/storage/browser/blob/blob_data_builder.cc
+++ b/storage/browser/blob/blob_data_builder.cc
@@ -65,7 +65,7 @@ void BlobDataBuilder::AppendIPCDataElement(const DataElement& ipc_data) {
case DataElement::TYPE_BYTES:
DCHECK(!ipc_data.offset());
AppendData(ipc_data.bytes(),
- base::checked_cast<size_t, uint64_t>(length));
+ base::checked_cast<size_t>(length));
break;
case DataElement::TYPE_FILE:
AppendFile(ipc_data.path(), ipc_data.offset(), length,
« no previous file with comments | « sql/meta_table.cc ('k') | storage/browser/blob/blob_storage_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698