| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef SERVICES_GLES2_MOJO_BUFFER_BACKING_H_ |
| #define SERVICES_GLES2_MOJO_BUFFER_BACKING_H_ |
| #include "base/memory/scoped_ptr.h" |
| #include "gpu/command_buffer/common/buffer.h" |
| #include "mojo/public/cpp/system/buffer.h" |
| class MojoBufferBacking : public gpu::BufferBacking { |
| MojoBufferBacking(mojo::ScopedSharedBufferHandle handle, |
| ~MojoBufferBacking() override; |
| static scoped_ptr<gpu::BufferBacking> Create( |
| mojo::ScopedSharedBufferHandle handle, |
| void* GetMemory() const override; |
| size_t GetSize() const override; |
| mojo::ScopedSharedBufferHandle handle_; |
| DISALLOW_COPY_AND_ASSIGN(MojoBufferBacking); |
| #endif // SERVICES_GLES2_MOJO_BUFFER_BACKING_H_ |