| Index: content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc
|
| diff --git a/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc b/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc
|
| index 24dfb3f38bd1a9547549ca53103b2d4e819d0fb0..1dc9df1ee6c2071322a2c8121d0101ec89bd0beb 100644
|
| --- a/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc
|
| +++ b/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc
|
| @@ -31,18 +31,17 @@ GpuMemoryBufferImplOzoneNativeBuffer::CreateFromHandle(
|
| handle.id, size, format, callback));
|
| }
|
|
|
| -void* GpuMemoryBufferImplOzoneNativeBuffer::Map() {
|
| +bool GpuMemoryBufferImplOzoneNativeBuffer::Map(void** data) {
|
| NOTREACHED();
|
| - return NULL;
|
| + return false;
|
| }
|
|
|
| void GpuMemoryBufferImplOzoneNativeBuffer::Unmap() {
|
| NOTREACHED();
|
| }
|
|
|
| -uint32 GpuMemoryBufferImplOzoneNativeBuffer::GetStride() const {
|
| +void GpuMemoryBufferImplOzoneNativeBuffer::GetStride(uint32* stride) const {
|
| NOTREACHED();
|
| - return 0;
|
| }
|
|
|
| gfx::GpuMemoryBufferHandle GpuMemoryBufferImplOzoneNativeBuffer::GetHandle()
|
|
|