| Index: content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h
|
| diff --git a/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h b/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h
|
| deleted file mode 100644
|
| index aa073e111e31c3d16d92912f500ba040f63c2030..0000000000000000000000000000000000000000
|
| --- a/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h
|
| +++ /dev/null
|
| @@ -1,63 +0,0 @@
|
| -// 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 CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_PIXMAP_H_
|
| -#define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_PIXMAP_H_
|
| -
|
| -#include <stddef.h>
|
| -
|
| -#include "base/macros.h"
|
| -#include "content/common/content_export.h"
|
| -#include "content/common/gpu/client/gpu_memory_buffer_impl.h"
|
| -
|
| -namespace ui {
|
| -class ClientNativePixmap;
|
| -}
|
| -
|
| -namespace content {
|
| -
|
| -// Implementation of GPU memory buffer based on Ozone native pixmap.
|
| -class CONTENT_EXPORT GpuMemoryBufferImplOzoneNativePixmap
|
| - : public GpuMemoryBufferImpl {
|
| - public:
|
| - ~GpuMemoryBufferImplOzoneNativePixmap() override;
|
| -
|
| - static scoped_ptr<GpuMemoryBufferImplOzoneNativePixmap> CreateFromHandle(
|
| - const gfx::GpuMemoryBufferHandle& handle,
|
| - const gfx::Size& size,
|
| - gfx::BufferFormat format,
|
| - gfx::BufferUsage usage,
|
| - const DestructionCallback& callback);
|
| -
|
| - static bool IsConfigurationSupported(gfx::BufferFormat format,
|
| - gfx::BufferUsage usage);
|
| -
|
| - static base::Closure AllocateForTesting(const gfx::Size& size,
|
| - gfx::BufferFormat format,
|
| - gfx::BufferUsage usage,
|
| - gfx::GpuMemoryBufferHandle* handle);
|
| -
|
| - // Overridden from gfx::GpuMemoryBuffer:
|
| - bool Map() override;
|
| - void* memory(size_t plane) override;
|
| - void Unmap() override;
|
| - int stride(size_t plane) const override;
|
| - gfx::GpuMemoryBufferHandle GetHandle() const override;
|
| -
|
| - private:
|
| - GpuMemoryBufferImplOzoneNativePixmap(
|
| - gfx::GpuMemoryBufferId id,
|
| - const gfx::Size& size,
|
| - gfx::BufferFormat format,
|
| - const DestructionCallback& callback,
|
| - scoped_ptr<ui::ClientNativePixmap> native_pixmap);
|
| -
|
| - scoped_ptr<ui::ClientNativePixmap> pixmap_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativePixmap);
|
| -};
|
| -
|
| -} // namespace content
|
| -
|
| -#endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_PIXMAP_H_
|
|
|