summaryrefslogtreecommitdiffstats
path: root/ui/display/chromeos/x11/display_configurator_x11.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/display/chromeos/x11/display_configurator_x11.cc')
-rw-r--r--ui/display/chromeos/x11/display_configurator_x11.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/display/chromeos/x11/display_configurator_x11.cc b/ui/display/chromeos/x11/display_configurator_x11.cc
index a21219a..6e6b59fa 100644
--- a/ui/display/chromeos/x11/display_configurator_x11.cc
+++ b/ui/display/chromeos/x11/display_configurator_x11.cc
@@ -4,16 +4,18 @@
#include "ui/display/chromeos/display_configurator.h"
+#include "ui/display/chromeos/touchscreen_delegate_impl.h"
#include "ui/display/chromeos/x11/native_display_delegate_x11.h"
-#include "ui/display/chromeos/x11/touchscreen_delegate_x11.h"
-
+#include "ui/display/chromeos/x11/touchscreen_device_manager_x11.h"
namespace ui {
void DisplayConfigurator::PlatformInitialize() {
InitializeDelegates(
scoped_ptr<NativeDisplayDelegate>(new NativeDisplayDelegateX11()),
- scoped_ptr<TouchscreenDelegate>(new TouchscreenDelegateX11()));
+ scoped_ptr<TouchscreenDelegate>(new TouchscreenDelegateImpl(
+ scoped_ptr<TouchscreenDeviceManager>(
+ new TouchscreenDeviceManagerX11()))));
}
} // namespace ui