Index: content/common/gpu/gpu_channel.cc |
diff --git a/content/common/gpu/gpu_channel.cc b/content/common/gpu/gpu_channel.cc |
index 3f7361dc1860ceaf5fe897bf05b093ee20717365..30f12dd7918af791a6c9d52485abd4c79411b069 100644 |
--- a/content/common/gpu/gpu_channel.cc |
+++ b/content/common/gpu/gpu_channel.cc |
@@ -1042,7 +1042,7 @@ scoped_refptr<gfx::GLImage> GpuChannel::CreateImageForGpuMemoryBuffer( |
case gfx::SHARED_MEMORY_BUFFER: { |
scoped_refptr<gfx::GLImageSharedMemory> image( |
new gfx::GLImageSharedMemory(size, internalformat)); |
- if (!image->Initialize(handle, format)) |
+ if (!image->Initialize(handle.handle, handle.id, format)) |
return scoped_refptr<gfx::GLImage>(); |
return image; |