| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "gpu/ipc/service/gpu_memory_buffer_factory.h" | 5 #include "gpu/ipc/service/gpu_memory_buffer_factory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| 11 #if defined(OS_MACOSX) | 11 #if defined(OS_MACOSX) |
| 12 #include "gpu/ipc/service/gpu_memory_buffer_factory_io_surface.h" | 12 #include "gpu/ipc/service/gpu_memory_buffer_factory_io_surface.h" |
| 13 #endif | 13 #endif |
| 14 | 14 |
| 15 #if defined(USE_OZONE) | 15 #if defined(OS_LINUX) |
| 16 #include "gpu/ipc/service/gpu_memory_buffer_factory_ozone_native_pixmap.h" | 16 #include "gpu/ipc/service/gpu_memory_buffer_factory_native_pixmap.h" |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 namespace gpu { | 19 namespace gpu { |
| 20 | 20 |
| 21 // static | 21 // static |
| 22 std::unique_ptr<GpuMemoryBufferFactory> | 22 std::unique_ptr<GpuMemoryBufferFactory> |
| 23 GpuMemoryBufferFactory::CreateNativeType() { | 23 GpuMemoryBufferFactory::CreateNativeType() { |
| 24 #if defined(OS_MACOSX) | 24 #if defined(OS_MACOSX) |
| 25 return base::WrapUnique(new GpuMemoryBufferFactoryIOSurface); | 25 return base::WrapUnique(new GpuMemoryBufferFactoryIOSurface); |
| 26 #endif | 26 #endif |
| 27 #if defined(USE_OZONE) | 27 #if defined(OS_LINUX) |
| 28 return base::WrapUnique(new GpuMemoryBufferFactoryOzoneNativePixmap); | 28 return base::WrapUnique(new GpuMemoryBufferFactoryNativePixmap); |
| 29 #endif | 29 #endif |
| 30 return nullptr; | 30 return nullptr; |
| 31 } | 31 } |
| 32 | 32 |
| 33 } // namespace gpu | 33 } // namespace gpu |
| OLD | NEW |