| Index: content/common/gpu/gpu_channel_manager.h
|
| diff --git a/content/common/gpu/gpu_channel_manager.h b/content/common/gpu/gpu_channel_manager.h
|
| index b6667be99291b35f6b997855511bc83a34d67c2e..73b4e59ea5756c608fd4440c29d619dfc828daa8 100644
|
| --- a/content/common/gpu/gpu_channel_manager.h
|
| +++ b/content/common/gpu/gpu_channel_manager.h
|
| @@ -28,6 +28,7 @@ class WaitableEvent;
|
|
|
| namespace gfx {
|
| class GLShareGroup;
|
| +struct GpuMemoryBufferHandle;
|
| }
|
|
|
| namespace gpu {
|
| @@ -127,6 +128,12 @@ class GpuChannelManager : public IPC::Listener,
|
| void OnDeleteImage(int32 client_id, int32 image_id, int32 sync_point);
|
| void OnDeleteImageSyncPointRetired(ImageOperation*);
|
| void OnLoadedShader(std::string shader);
|
| + void OnCreateGpuMemoryBuffer(const gfx::GpuMemoryBufferHandle& handle,
|
| + const gfx::Size& size,
|
| + unsigned internalformat,
|
| + unsigned usage);
|
| + void OnDestroyGpuMemoryBuffer(const gfx::GpuMemoryBufferHandle& handle,
|
| + int32 sync_point);
|
|
|
| void OnLoseAllContexts();
|
|
|
|
|