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..c7044e314f3058042b6138fb6c411d4bdffee171 |
--- /dev/null |
+++ b/ui/ozone/platform/x11/x11_input_controller.cc |
@@ -0,0 +1,35 @@ |
+// 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() { |
+} |
spang
2014/12/06 00:31:23
add a newline between definitions.
|
+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 |