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_buffer.h b/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h |
similarity index 75% |
rename from content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h |
rename to content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h |
index 882e1e04235a443c01bfe69991a63ecec64fafe8..626429109a9e4f885d50fafcf0c453cdd9981fff 100644 |
--- a/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h |
+++ b/content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h |
@@ -2,15 +2,15 @@ |
// 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_BUFFER_H_ |
-#define CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_BUFFER_H_ |
+#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 "content/common/gpu/client/gpu_memory_buffer_impl.h" |
namespace content { |
-// Implementation of GPU memory buffer based on Ozone native buffers. |
-class GpuMemoryBufferImplOzoneNativeBuffer : public GpuMemoryBufferImpl { |
+// Implementation of GPU memory buffer based on Ozone native pixmap. |
+class GpuMemoryBufferImplOzoneNativePixmap : public GpuMemoryBufferImpl { |
public: |
static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle( |
const gfx::GpuMemoryBufferHandle& handle, |
@@ -26,15 +26,15 @@ class GpuMemoryBufferImplOzoneNativeBuffer : public GpuMemoryBufferImpl { |
gfx::GpuMemoryBufferHandle GetHandle() const override; |
private: |
- GpuMemoryBufferImplOzoneNativeBuffer(gfx::GpuMemoryBufferId id, |
+ GpuMemoryBufferImplOzoneNativePixmap(gfx::GpuMemoryBufferId id, |
const gfx::Size& size, |
Format format, |
const DestructionCallback& callback); |
- ~GpuMemoryBufferImplOzoneNativeBuffer() override; |
+ ~GpuMemoryBufferImplOzoneNativePixmap() override; |
- DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativeBuffer); |
+ DISALLOW_COPY_AND_ASSIGN(GpuMemoryBufferImplOzoneNativePixmap); |
}; |
} // namespace content |
-#endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_BUFFER_H_ |
+#endif // CONTENT_COMMON_GPU_CLIENT_GPU_MEMORY_BUFFER_IMPL_OZONE_NATIVE_PIXMAP_H_ |