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

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: remove new evernt type, add direct route from event -> platform window 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
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

Powered by Google App Engine
This is Rietveld 408576698