OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/ozone/platform/x11/x11_input_controller.h" | |
6 | |
7 namespace ui { | |
8 | |
9 X11InputController::X11InputController() { | |
10 } | |
spang
2014/12/06 00:31:23
add a newline between definitions.
| |
11 X11InputController::~X11InputController() { | |
12 } | |
13 | |
14 bool X11InputController::HasMouse() { | |
15 return true; | |
16 } | |
17 bool X11InputController::HasTouchpad() { | |
18 return false; | |
19 } | |
20 void X11InputController::SetTouchpadSensitivity(int value) { | |
21 } | |
22 void X11InputController::SetTapToClick(bool enabled) { | |
23 } | |
24 void X11InputController::SetThreeFingerClick(bool enabled) { | |
25 } | |
26 void X11InputController::SetTapDragging(bool enabled) { | |
27 } | |
28 void X11InputController::SetNaturalScroll(bool enabled) { | |
29 } | |
30 void X11InputController::SetMouseSensitivity(int value) { | |
31 } | |
32 void X11InputController::SetPrimaryButtonRight(bool right) { | |
33 } | |
34 | |
35 } // namespace ui | |
OLD | NEW |