summaryrefslogtreecommitdiffstats
path: root/ui/gl/gl_image_shared_memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gl/gl_image_shared_memory.h')
-rw-r--r--ui/gl/gl_image_shared_memory.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/ui/gl/gl_image_shared_memory.h b/ui/gl/gl_image_shared_memory.h
index 622eb3d..d9233cb 100644
--- a/ui/gl/gl_image_shared_memory.h
+++ b/ui/gl/gl_image_shared_memory.h
@@ -6,7 +6,7 @@
#define UI_GL_GL_IMAGE_SHARED_MEMORY_H_
#include "base/memory/scoped_ptr.h"
-#include "base/memory/shared_memory_handle.h"
+#include "ui/gfx/gpu_memory_buffer.h"
#include "ui/gl/gl_image_memory.h"
namespace gfx {
@@ -15,9 +15,8 @@ class GL_EXPORT GLImageSharedMemory : public GLImageMemory {
public:
GLImageSharedMemory(const gfx::Size& size, unsigned internalformat);
- bool Initialize(const base::SharedMemoryHandle& handle,
- gfx::GenericSharedMemoryId shared_memory_id,
- BufferFormat format);
+ bool Initialize(const gfx::GpuMemoryBufferHandle& handle,
+ gfx::BufferFormat format);
// Overridden from GLImage:
void Destroy(bool have_context) override;
@@ -30,7 +29,7 @@ class GL_EXPORT GLImageSharedMemory : public GLImageMemory {
private:
scoped_ptr<base::SharedMemory> shared_memory_;
- GenericSharedMemoryId shared_memory_id_;
+ gfx::GenericSharedMemoryId shared_memory_id_;
DISALLOW_COPY_AND_ASSIGN(GLImageSharedMemory);
};