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

Unified Diff: ui/gfx/gpu_memory_buffer.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | ui/gfx/ozone/dri/dri_skbitmap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/gpu_memory_buffer.h
diff --git a/ui/gfx/gpu_memory_buffer.h b/ui/gfx/gpu_memory_buffer.h
index 3510a911c0493ca3c4781120a3abd0976f78781f..bba82e0ffb90f1434b272d38220c4859c5a65111 100644
--- a/ui/gfx/gpu_memory_buffer.h
+++ b/ui/gfx/gpu_memory_buffer.h
@@ -9,9 +9,9 @@
#include "build/build_config.h"
#include "ui/gfx/gfx_export.h"
-#if defined(OS_ANDROID)
+//#if defined(OS_ANDROID)
#include <third_party/khronos/EGL/egl.h>
-#endif
+//#endif
namespace gfx {
@@ -27,20 +27,22 @@ struct GpuMemoryBufferHandle {
GpuMemoryBufferHandle()
: type(EMPTY_BUFFER),
handle(base::SharedMemory::NULLHandle())
-#if defined(OS_ANDROID)
- , native_buffer(NULL)
-#endif
+ //#if defined(OS_ANDROID) || defined(OZONE)
+ ,
+ native_buffer(NULL)
+//#endif
#if defined(OS_MACOSX)
- , io_surface_id(0)
+ ,
+ io_surface_id(0)
#endif
{
}
bool is_null() const { return type == EMPTY_BUFFER; }
GpuMemoryBufferType type;
base::SharedMemoryHandle handle;
-#if defined(OS_ANDROID)
+ //#if defined(OS_ANDROID) || defined(OZONE)
EGLClientBuffer native_buffer;
-#endif
+//#endif
#if defined(OS_MACOSX)
uint32 io_surface_id;
#endif
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | ui/gfx/ozone/dri/dri_skbitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698