| Index: printing/metafile.cc
|
| diff --git a/printing/metafile.cc b/printing/metafile.cc
|
| index ece61dfa857ed87295961f9109ef168bcf2f4f3f..33c84f4938acfdbcd210ae715c85d9b0f2c80039 100644
|
| --- a/printing/metafile.cc
|
| +++ b/printing/metafile.cc
|
| @@ -27,7 +27,8 @@ bool Metafile::GetDataAsVector(std::vector<char>* buffer) const {
|
| buffer->resize(GetDataSize());
|
| if (buffer->empty())
|
| return false;
|
| - return GetData(&buffer->front(), base::checked_cast<uint32>(buffer->size()));
|
| + return GetData(&buffer->front(),
|
| + base::checked_cast<uint32_t>(buffer->size()));
|
| }
|
|
|
| bool Metafile::SaveTo(base::File* file) const {
|
|
|