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

Unified Diff: ui/ozone/platform/dri/ozone_platform_gbm.cc

Issue 308053006: ozone: gbm: Fix build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/ozone_platform_gbm.cc
diff --git a/ui/ozone/platform/dri/ozone_platform_gbm.cc b/ui/ozone/platform/dri/ozone_platform_gbm.cc
index 46e3bac4f2c6cc3fb9e5ced777896db81ccc1113..75f05515bd098cd5d955925fde5cac7d53e1350a 100644
--- a/ui/ozone/platform/dri/ozone_platform_gbm.cc
+++ b/ui/ozone/platform/dri/ozone_platform_gbm.cc
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698