| Index: ui/gl/gl_image_shm.h | 
| diff --git a/ui/gl/gl_image_shm.h b/ui/gl/gl_image_shm.h | 
| index 70233f9a3be9960f2ff3a6990a3a146316ba67dd..ffdfc8b98da3a97691eb6de15a5e57d41cb177c0 100644 | 
| --- a/ui/gl/gl_image_shm.h | 
| +++ b/ui/gl/gl_image_shm.h | 
| @@ -12,7 +12,7 @@ namespace gfx { | 
|  | 
| class GL_EXPORT GLImageShm : public GLImage { | 
| public: | 
| -  explicit GLImageShm(gfx::Size size); | 
| +  GLImageShm(gfx::Size size, unsigned internalformat); | 
|  | 
| bool Initialize(gfx::GpuMemoryBufferHandle buffer); | 
|  | 
| @@ -28,6 +28,7 @@ class GL_EXPORT GLImageShm : public GLImage { | 
| private: | 
| scoped_ptr<base::SharedMemory> shared_memory_; | 
| gfx::Size size_; | 
| +  unsigned internalformat_; | 
|  | 
| DISALLOW_COPY_AND_ASSIGN(GLImageShm); | 
| }; | 
|  |