| Index: content/common/gpu/gpu_memory_buffer_factory.cc
|
| diff --git a/content/common/gpu/gpu_memory_buffer_factory.cc b/content/common/gpu/gpu_memory_buffer_factory.cc
|
| index 019bdd8dbcc629c80ad7ae24fe43d15526feaf77..2c5bd395c59e2a0610cdd37644bc1361ce56b747 100644
|
| --- a/content/common/gpu/gpu_memory_buffer_factory.cc
|
| +++ b/content/common/gpu/gpu_memory_buffer_factory.cc
|
| @@ -16,7 +16,7 @@
|
| #endif
|
|
|
| #if defined(USE_OZONE)
|
| -#include "content/common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h"
|
| +#include "content/common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h"
|
| #endif
|
|
|
| namespace content {
|
| @@ -32,7 +32,7 @@ void GpuMemoryBufferFactory::GetSupportedTypes(
|
| gfx::SURFACE_TEXTURE_BUFFER,
|
| #endif
|
| #if defined(USE_OZONE)
|
| - gfx::OZONE_NATIVE_BUFFER,
|
| + gfx::OZONE_NATIVE_PIXMAP,
|
| #endif
|
| gfx::SHARED_MEMORY_BUFFER
|
| };
|
| @@ -54,8 +54,8 @@ scoped_ptr<GpuMemoryBufferFactory> GpuMemoryBufferFactory::Create(
|
| return make_scoped_ptr(new GpuMemoryBufferFactorySurfaceTexture);
|
| #endif
|
| #if defined(USE_OZONE)
|
| - case gfx::OZONE_NATIVE_BUFFER:
|
| - return make_scoped_ptr(new GpuMemoryBufferFactoryOzoneNativeBuffer);
|
| + case gfx::OZONE_NATIVE_PIXMAP:
|
| + return make_scoped_ptr(new GpuMemoryBufferFactoryOzoneNativePixmap);
|
| #endif
|
| default:
|
| NOTREACHED();
|
|
|