Commit 1b63d607 authored by spang@chromium.org's avatar spang@chromium.org

ozone: gbm: Fix build

TEST=ozone build
BUG=377497
NOTRY=true
TBR=dnicoara

Review URL: https://codereview.chromium.org/308053006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273878 0039d316-1c4b-4281-b951-d872f2087c98
parent 874df706
......@@ -19,6 +19,7 @@
#if defined(OS_CHROMEOS)
#include "ui/ozone/common/chromeos/native_display_delegate_ozone.h"
#include "ui/ozone/common/chromeos/touchscreen_device_manager_ozone.h"
#endif
namespace ui {
......@@ -70,6 +71,11 @@ class OzonePlatformGbm : public OzonePlatform {
OVERRIDE {
return scoped_ptr<NativeDisplayDelegate>(new NativeDisplayDelegateOzone());
}
virtual scoped_ptr<TouchscreenDeviceManager>
CreateTouchscreenDeviceManager() OVERRIDE {
return scoped_ptr<TouchscreenDeviceManager>(
new TouchscreenDeviceManagerOzone());
}
#endif
virtual void InitializeUI() OVERRIDE {
// Needed since the browser process creates the accelerated widgets and that
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment