Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: ui/ozone/platform/gbm/ozone_platform_gbm.cc

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 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 "ui/ozone/platform/gbm/ozone_platform_gbm.h"
6
7 #include "ui/ozone/ozone_platform.h"
8
9 namespace ui {
10
11 OzonePlatformGbm::OzonePlatformGbm() {}
12
13 OzonePlatformGbm::~OzonePlatformGbm() {}
14
15 gfx::SurfaceFactoryOzone* OzonePlatformGbm::GetSurfaceFactoryOzone() {
16 return &surface_factory_ozone_;
17 }
18
19 ui::EventFactoryOzone* OzonePlatformGbm::GetEventFactoryOzone() {
20 return &event_factory_ozone_;
21 }
22
23 ui::InputMethodContextFactoryOzone*
24 OzonePlatformGbm::GetInputMethodContextFactoryOzone() {
25 return &input_method_context_factory_ozone_;
26 }
27
28 gfx::OverlayHALOzone* OzonePlatformGbm::GetOverlayHALOzone() {
29 return &surface_factory_ozone_;
30 }
31
32 OzonePlatform* CreateOzonePlatformGbm() { return new OzonePlatformGbm; }
33
34 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/gbm/ozone_platform_gbm.h ('k') | ui/ozone/platform/test/ozone_platform_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698