| 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
|
|
|