| Index: gpu/command_buffer/client/gles2_trace_implementation_autogen.h | 
| diff --git a/gpu/command_buffer/client/gles2_trace_implementation_autogen.h b/gpu/command_buffer/client/gles2_trace_implementation_autogen.h | 
| index 7ec9eb68d1b0cec7317ef523d6c377e65836da29..9888a5d559f635ac19e4132092e6c06ff21a8a90 100644 | 
| --- a/gpu/command_buffer/client/gles2_trace_implementation_autogen.h | 
| +++ b/gpu/command_buffer/client/gles2_trace_implementation_autogen.h | 
| @@ -279,6 +279,8 @@ virtual void RegisterSharedIdsCHROMIUM( | 
| virtual GLboolean EnableFeatureCHROMIUM(const char* feature) OVERRIDE; | 
| virtual void* MapBufferCHROMIUM(GLuint target, GLenum access) OVERRIDE; | 
| virtual GLboolean UnmapBufferCHROMIUM(GLuint target) OVERRIDE; | 
| +virtual void* MapImageCHROMIUM(GLuint image_id, GLenum access) OVERRIDE; | 
| +virtual void UnmapImageCHROMIUM(GLuint image_id) OVERRIDE; | 
| virtual void* MapBufferSubDataCHROMIUM( | 
| GLuint target, GLintptr offset, GLsizeiptr size, GLenum access) OVERRIDE; | 
| virtual void UnmapBufferSubDataCHROMIUM(const void* mem) OVERRIDE; | 
| @@ -297,6 +299,11 @@ virtual void GetProgramInfoCHROMIUM( | 
| GLuint program, GLsizei bufsize, GLsizei* size, void* info) OVERRIDE; | 
| virtual GLuint CreateStreamTextureCHROMIUM(GLuint texture) OVERRIDE; | 
| virtual void DestroyStreamTextureCHROMIUM(GLuint texture) OVERRIDE; | 
| +virtual GLuint CreateImageCHROMIUM( | 
| +    GLsizei width, GLsizei height, GLenum internalformat) OVERRIDE; | 
| +virtual void DestroyImageCHROMIUM(GLuint image_id) OVERRIDE; | 
| +virtual void GetImageParameterivCHROMIUM( | 
| +    GLuint image_id, GLenum pname, GLint* params) OVERRIDE; | 
| virtual void GetTranslatedShaderSourceANGLE( | 
| GLuint shader, GLsizei bufsize, GLsizei* length, char* source) OVERRIDE; | 
| virtual void PostSubBufferCHROMIUM( | 
|  |