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

Unified Diff: ui/ozone/platform/x11/x11_input_controller.cc

Issue 750593003: Ozone X11 platform Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup leftover stuff Created 6 years 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 | « ui/ozone/platform/x11/x11_input_controller.h ('k') | ui/ozone/platform/x11/x11_surface_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/x11/x11_input_controller.cc
diff --git a/ui/ozone/platform/x11/x11_input_controller.cc b/ui/ozone/platform/x11/x11_input_controller.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1492211b5d1c22b5ea81a7ac584e908656b8ce13
--- /dev/null
+++ b/ui/ozone/platform/x11/x11_input_controller.cc
@@ -0,0 +1,44 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/ozone/platform/x11/x11_input_controller.h"
+
+namespace ui {
+
+X11InputController::X11InputController() {
+}
+
+X11InputController::~X11InputController() {
+}
+
+bool X11InputController::HasMouse() {
+ return true;
+}
+
+bool X11InputController::HasTouchpad() {
+ return false;
+}
+
+void X11InputController::SetTouchpadSensitivity(int value) {
+}
+
+void X11InputController::SetTapToClick(bool enabled) {
+}
+
+void X11InputController::SetThreeFingerClick(bool enabled) {
+}
+
+void X11InputController::SetTapDragging(bool enabled) {
+}
+
+void X11InputController::SetNaturalScroll(bool enabled) {
+}
+
+void X11InputController::SetMouseSensitivity(int value) {
+}
+
+void X11InputController::SetPrimaryButtonRight(bool right) {
+}
+
+} // namespace ui
« no previous file with comments | « ui/ozone/platform/x11/x11_input_controller.h ('k') | ui/ozone/platform/x11/x11_surface_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698