| Index: content/common/gpu/gpu_command_buffer_stub.h
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.h b/content/common/gpu/gpu_command_buffer_stub.h
|
| index 4f0881843804ef595e2d5134e51ad731b03c34ea..3bcc58b0bff8707a8d413d7121db333036c19ca9 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.h
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.h
|
| @@ -63,9 +63,6 @@ class CONTENT_EXPORT GpuCommandBufferStubBase {
|
| virtual bool IsInSameContextShareGroup(
|
| const GpuCommandBufferStubBase& other) const = 0;
|
|
|
| - virtual void SendMemoryAllocationToProxy(
|
| - const GpuMemoryAllocation& allocation) = 0;
|
| -
|
| virtual void SetMemoryAllocation(
|
| const GpuMemoryAllocation& allocation) = 0;
|
| };
|
| @@ -115,10 +112,6 @@ class GpuCommandBufferStub
|
| virtual bool IsInSameContextShareGroup(
|
| const GpuCommandBufferStubBase& other) const OVERRIDE;
|
|
|
| - // Sends memory allocation limits to render process.
|
| - virtual void SendMemoryAllocationToProxy(
|
| - const GpuMemoryAllocation& allocation) OVERRIDE;
|
| -
|
| // Sets buffer usage depending on Memory Allocation
|
| virtual void SetMemoryAllocation(
|
| const GpuMemoryAllocation& allocation) OVERRIDE;
|
| @@ -223,7 +216,6 @@ class GpuCommandBufferStub
|
| bool software_;
|
| uint32 last_flush_count_;
|
| scoped_ptr<GpuCommandBufferStubBase::SurfaceState> surface_state_;
|
| - GpuMemoryAllocation allocation_;
|
|
|
| scoped_ptr<gpu::CommandBufferService> command_buffer_;
|
| scoped_ptr<gpu::gles2::GLES2Decoder> decoder_;
|
|
|