| Index: gpu/command_buffer/client/gles2_implementation_impl_autogen.h | 
| diff --git a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h | 
| index 5bc9c6bb9125c97d83becd0e0e5f06c368a61631..7f554844bbd83019661ae15fcf385759fc181f57 100644 | 
| --- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h | 
| +++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h | 
| @@ -2782,25 +2782,6 @@ void GLES2Implementation::VertexAttribI4uiv(GLuint indx, const GLuint* values) { | 
| CheckGLError(); | 
| } | 
|  | 
| -void GLES2Implementation::Viewport(GLint x, | 
| -                                   GLint y, | 
| -                                   GLsizei width, | 
| -                                   GLsizei height) { | 
| -  GPU_CLIENT_SINGLE_THREAD_CHECK(); | 
| -  GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glViewport(" << x << ", " << y | 
| -                     << ", " << width << ", " << height << ")"); | 
| -  if (width < 0) { | 
| -    SetGLError(GL_INVALID_VALUE, "glViewport", "width < 0"); | 
| -    return; | 
| -  } | 
| -  if (height < 0) { | 
| -    SetGLError(GL_INVALID_VALUE, "glViewport", "height < 0"); | 
| -    return; | 
| -  } | 
| -  helper_->Viewport(x, y, width, height); | 
| -  CheckGLError(); | 
| -} | 
| - | 
| void GLES2Implementation::BlitFramebufferCHROMIUM(GLint srcX0, | 
| GLint srcY0, | 
| GLint srcX1, | 
|  |