| // Copyright 2015 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. |
| |
| #include "ui/ozone/platform/drm/client_native_pixmap_factory_gbm.h" |
| |
| #include <utility> |
| |
| #include "base/macros.h" |
| #include "ui/gfx/linux/client_native_pixmap_factory_dmabuf.h" |
| #include "ui/gfx/native_pixmap_handle.h" |
| |
| namespace ui { |
| |
| gfx::ClientNativePixmapFactory* CreateClientNativePixmapFactoryGbm() { |
| return gfx::CreateClientNativePixmapFactoryDmabuf(); |
| } |
| |
| } // namespace ui |