diff options
Diffstat (limited to 'chrome/common/command_buffer_messages.h')
-rw-r--r-- | chrome/common/command_buffer_messages.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/command_buffer_messages.h b/chrome/common/command_buffer_messages.h index 7e3ae9c..144ff2f 100644 --- a/chrome/common/command_buffer_messages.h +++ b/chrome/common/command_buffer_messages.h @@ -26,7 +26,7 @@ struct ParamTraits<gpu::CommandBuffer::State> { m->ReadInt(iter, &p->put_offset) && m->ReadInt(iter, &p->token) && m->ReadInt(iter, &temp)) { - p->error = static_cast<gpu::parse_error::ParseError>(temp); + p->error = static_cast<gpu::error::Error>(temp); return true; } else { return false; |