Index: ui/ozone/platform/gbm/ozone_platform_gbm.cc |
diff --git a/ui/ozone/platform/gbm/ozone_platform_gbm.cc b/ui/ozone/platform/gbm/ozone_platform_gbm.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..53a29df944cf2bb4640ce0bdc48a650b8764b45e |
--- /dev/null |
+++ b/ui/ozone/platform/gbm/ozone_platform_gbm.cc |
@@ -0,0 +1,34 @@ |
+// Copyright 2013 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/gbm/ozone_platform_gbm.h" |
+ |
+#include "ui/ozone/ozone_platform.h" |
+ |
+namespace ui { |
+ |
+OzonePlatformGbm::OzonePlatformGbm() {} |
+ |
+OzonePlatformGbm::~OzonePlatformGbm() {} |
+ |
+gfx::SurfaceFactoryOzone* OzonePlatformGbm::GetSurfaceFactoryOzone() { |
+ return &surface_factory_ozone_; |
+} |
+ |
+ui::EventFactoryOzone* OzonePlatformGbm::GetEventFactoryOzone() { |
+ return &event_factory_ozone_; |
+} |
+ |
+ui::InputMethodContextFactoryOzone* |
+OzonePlatformGbm::GetInputMethodContextFactoryOzone() { |
+ return &input_method_context_factory_ozone_; |
+} |
+ |
+gfx::OverlayHALOzone* OzonePlatformGbm::GetOverlayHALOzone() { |
+ return &surface_factory_ozone_; |
+} |
+ |
+OzonePlatform* CreateOzonePlatformGbm() { return new OzonePlatformGbm; } |
+ |
+} // namespace ui |