| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" | 5 #include "content/common/gpu/client/gpu_memory_buffer_impl.h" |
| 6 | 6 |
| 7 #include "content/common/gpu/client/gpu_memory_buffer_impl_io_surface.h" | 7 #include "content/common/gpu/client/gpu_memory_buffer_impl_io_surface.h" |
| 8 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h" | 8 #include "content/common/gpu/client/gpu_memory_buffer_impl_shared_memory.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 return; | 50 return; |
| 51 } | 51 } |
| 52 | 52 |
| 53 callback.Run(gfx::GpuMemoryBufferHandle()); | 53 callback.Run(gfx::GpuMemoryBufferHandle()); |
| 54 } | 54 } |
| 55 | 55 |
| 56 // static | 56 // static |
| 57 void GpuMemoryBufferImpl::DeletedByChildProcess( | 57 void GpuMemoryBufferImpl::DeletedByChildProcess( |
| 58 gfx::GpuMemoryBufferType type, | 58 gfx::GpuMemoryBufferType type, |
| 59 const gfx::GpuMemoryBufferId& id, | 59 const gfx::GpuMemoryBufferId& id, |
| 60 base::ProcessHandle child_process) { | 60 base::ProcessHandle child_process, |
| 61 uint32 sync_point) { |
| 61 } | 62 } |
| 62 | 63 |
| 63 // static | 64 // static |
| 64 scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle( | 65 scoped_ptr<GpuMemoryBufferImpl> GpuMemoryBufferImpl::CreateFromHandle( |
| 65 const gfx::GpuMemoryBufferHandle& handle, | 66 const gfx::GpuMemoryBufferHandle& handle, |
| 66 const gfx::Size& size, | 67 const gfx::Size& size, |
| 67 Format format, | 68 Format format, |
| 68 const DestructionCallback& callback) { | 69 const DestructionCallback& callback) { |
| 69 switch (handle.type) { | 70 switch (handle.type) { |
| 70 case gfx::SHARED_MEMORY_BUFFER: | 71 case gfx::SHARED_MEMORY_BUFFER: |
| 71 return GpuMemoryBufferImplSharedMemory::CreateFromHandle( | 72 return GpuMemoryBufferImplSharedMemory::CreateFromHandle( |
| 72 handle, size, format, callback); | 73 handle, size, format, callback); |
| 73 case gfx::IO_SURFACE_BUFFER: | 74 case gfx::IO_SURFACE_BUFFER: |
| 74 return GpuMemoryBufferImplIOSurface::CreateFromHandle( | 75 return GpuMemoryBufferImplIOSurface::CreateFromHandle( |
| 75 handle, size, format, callback); | 76 handle, size, format, callback); |
| 76 default: | 77 default: |
| 77 return scoped_ptr<GpuMemoryBufferImpl>(); | 78 return scoped_ptr<GpuMemoryBufferImpl>(); |
| 78 } | 79 } |
| 79 } | 80 } |
| 80 | 81 |
| 81 } // namespace content | 82 } // namespace content |
| OLD | NEW |