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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 }
11
12 X11InputController::~X11InputController() {
13 }
14
15 bool X11InputController::HasMouse() {
16 return true;
17 }
18
19 bool X11InputController::HasTouchpad() {
20 return false;
21 }
22
23 void X11InputController::SetTouchpadSensitivity(int value) {
24 }
25
26 void X11InputController::SetTapToClick(bool enabled) {
27 }
28
29 void X11InputController::SetThreeFingerClick(bool enabled) {
30 }
31
32 void X11InputController::SetTapDragging(bool enabled) {
33 }
34
35 void X11InputController::SetNaturalScroll(bool enabled) {
36 }
37
38 void X11InputController::SetMouseSensitivity(int value) {
39 }
40
41 void X11InputController::SetPrimaryButtonRight(bool right) {
42 }
43
44 } // namespace ui
OLDNEW
« 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