Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: content/common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h

Issue 1389133002: content: Use type-parameterized tests for GpuMemoryBuffer implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
index 74f1bfeb862ddde7a9825e879b6e70a13fa274b8..0e3ee8c3e1ff5e4a1f83b7e8ddd931f6518e1305 100644
--- 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
@@ -18,13 +18,21 @@ class GpuMemoryBufferImplOzoneNativePixmap : public GpuMemoryBufferImpl {
public:
~GpuMemoryBufferImplOzoneNativePixmap() override;
- static scoped_ptr<GpuMemoryBufferImpl> CreateFromHandle(
+ 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(void** data) override;
void Unmap() override;

Powered by Google App Engine
This is Rietveld 408576698