- add sources.
[platform/framework/web/crosswalk.git] / src / ozone / platform / ozone_platform_wayland.cc
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ozone/platform/ozone_platform_wayland.h"
6
7 namespace ui {
8
9 OzonePlatformWayland::OzonePlatformWayland() {}
10
11 OzonePlatformWayland::~OzonePlatformWayland() {}
12
13 gfx::SurfaceFactoryOzone* OzonePlatformWayland::GetSurfaceFactoryOzone() {
14   return &surface_factory_ozone_;
15 }
16
17 ui::EventFactoryOzone* OzonePlatformWayland::GetEventFactoryOzone() {
18   return &event_factory_ozone_;
19 }
20
21 OzonePlatform* CreateOzonePlatformWayland() { return new OzonePlatformWayland; }
22
23 }  // namespace ui