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

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: 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 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 }
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698