| Index: gpu/command_buffer/client/gles2_implementation.cc
|
| diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
|
| index 3424bc2a5310224463bbed535e1e84eed8e336d0..a624aa9356fd48a44e7ab753f2e5a625310ebcaf 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation.cc
|
| +++ b/gpu/command_buffer/client/gles2_implementation.cc
|
| @@ -6353,7 +6353,8 @@ bool GLES2Implementation::PackStringsToBucket(GLsizei count,
|
| header[ii + 1] = len;
|
| }
|
| // Pack data into a bucket on the service.
|
| - helper_->SetBucketSize(kResultBucketId, total_size.ValueOrDefault(0));
|
| + helper_->SetBucketSize(kResultBucketId,
|
| + total_size.template ValueOrDefault<uint32_t>(0));
|
| size_t offset = 0;
|
| for (GLsizei ii = 0; ii <= count; ++ii) {
|
| const char* src =
|
|
|