Index: content/common/gpu/client/gpu_memory_buffer_impl.cc |
diff --git a/content/common/gpu/client/gpu_memory_buffer_impl.cc b/content/common/gpu/client/gpu_memory_buffer_impl.cc |
index 377bfe9d5cf47fda3f34d53c17a99a6fe04009f3..5d2350af8f6d46625289f5bc18faf52fdfe8bf35 100644 |
--- a/content/common/gpu/client/gpu_memory_buffer_impl.cc |
+++ b/content/common/gpu/client/gpu_memory_buffer_impl.cc |
@@ -18,7 +18,7 @@ |
#endif |
#if defined(USE_OZONE) |
-#include "content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h" |
+#include "content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h" |
#endif |
namespace content { |
@@ -62,8 +62,8 @@ scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle( |
handle, size, format, callback); |
#endif |
#if defined(USE_OZONE) |
- case gfx::OZONE_NATIVE_BUFFER: |
- return GpuMemoryBufferImplOzoneNativeBuffer::CreateFromHandle( |
+ case gfx::OZONE_NATIVE_PIXMAP: |
+ return GpuMemoryBufferImplOzoneNativePixmap::CreateFromHandle( |
handle, size, format, usage, callback); |
#endif |
default: |