| Index: ui/ozone/platform/gbm/ozone_platform_gbm.cc
|
| diff --git a/ui/ozone/platform/dri/ozone_platform_dri.cc b/ui/ozone/platform/gbm/ozone_platform_gbm.cc
|
| similarity index 51%
|
| copy from ui/ozone/platform/dri/ozone_platform_dri.cc
|
| copy to ui/ozone/platform/gbm/ozone_platform_gbm.cc
|
| index 85ac5cee0167d143e0e0115234bfec4e0a7b9995..8a976b4878b9d79bc26d46fe4a133970d0fc0b1a 100644
|
| --- a/ui/ozone/platform/dri/ozone_platform_dri.cc
|
| +++ b/ui/ozone/platform/gbm/ozone_platform_gbm.cc
|
| @@ -2,29 +2,29 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ui/ozone/platform/dri/ozone_platform_dri.h"
|
| +#include "ui/ozone/platform/gbm/ozone_platform_gbm.h"
|
|
|
| #include "ui/ozone/ozone_platform.h"
|
|
|
| namespace ui {
|
|
|
| -OzonePlatformDri::OzonePlatformDri() {}
|
| +OzonePlatformGbm::OzonePlatformGbm() {}
|
|
|
| -OzonePlatformDri::~OzonePlatformDri() {}
|
| +OzonePlatformGbm::~OzonePlatformGbm() {}
|
|
|
| -gfx::SurfaceFactoryOzone* OzonePlatformDri::GetSurfaceFactoryOzone() {
|
| +gfx::SurfaceFactoryOzone* OzonePlatformGbm::GetSurfaceFactoryOzone() {
|
| return &surface_factory_ozone_;
|
| }
|
|
|
| -ui::EventFactoryOzone* OzonePlatformDri::GetEventFactoryOzone() {
|
| +ui::EventFactoryOzone* OzonePlatformGbm::GetEventFactoryOzone() {
|
| return &event_factory_ozone_;
|
| }
|
|
|
| ui::InputMethodContextFactoryOzone*
|
| -OzonePlatformDri::GetInputMethodContextFactoryOzone() {
|
| +OzonePlatformGbm::GetInputMethodContextFactoryOzone() {
|
| return &input_method_context_factory_ozone_;
|
| }
|
|
|
| -OzonePlatform* CreateOzonePlatformDri() { return new OzonePlatformDri; }
|
| +OzonePlatform* CreateOzonePlatformGbm() { return new OzonePlatformGbm; }
|
|
|
| } // namespace ui
|
|
|