summaryrefslogtreecommitdiffstats
path: root/ui/base/touch
diff options
context:
space:
mode:
authormustaq <mustaq@chromium.org>2015-01-21 12:34:04 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-21 20:35:08 +0000
commit52cfea1ccce19c424168a56843a98253bd505645 (patch)
treedcb5db52f18a715ef2070a13ef6120aec613b29b /ui/base/touch
parent21959d33ba15f4e4b2666f96b7eb322be7cfd06c (diff)
downloadchromium_src-52cfea1ccce19c424168a56843a98253bd505645.zip
chromium_src-52cfea1ccce19c424168a56843a98253bd505645.tar.gz
chromium_src-52cfea1ccce19c424168a56843a98253bd505645.tar.bz2
Unified touch_device_aurax11 and touch_device_ozone.
This change was suggested in http://crrev.com/806693008 BUG=443667 Review URL: https://codereview.chromium.org/815983003 Cr-Commit-Position: refs/heads/master@{#312430}
Diffstat (limited to 'ui/base/touch')
-rw-r--r--ui/base/touch/touch_device_linux.cc (renamed from ui/base/touch/touch_device_aurax11.cc)2
-rw-r--r--ui/base/touch/touch_device_ozone.cc64
2 files changed, 1 insertions, 65 deletions
diff --git a/ui/base/touch/touch_device_aurax11.cc b/ui/base/touch/touch_device_linux.cc
index 723fb0a..e0e7948 100644
--- a/ui/base/touch/touch_device_aurax11.cc
+++ b/ui/base/touch/touch_device_linux.cc
@@ -14,7 +14,7 @@ bool IsTouchDevicePresent() {
}
int MaxTouchPoints() {
- int max_touch = -1;
+ int max_touch = 0;
const std::vector<ui::TouchscreenDevice>& touchscreen_devices =
ui::DeviceDataManager::GetInstance()->touchscreen_devices();
for (const ui::TouchscreenDevice& device : touchscreen_devices) {
diff --git a/ui/base/touch/touch_device_ozone.cc b/ui/base/touch/touch_device_ozone.cc
deleted file mode 100644
index 6698891..0000000
--- a/ui/base/touch/touch_device_ozone.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (c) 2013 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/base/touch/touch_device.h"
-
-#include "base/logging.h"
-#include "ui/events/devices/device_data_manager.h"
-
-namespace ui {
-
-bool IsTouchDevicePresent() {
- // TODO(sadrul@chromium.org): Support evdev hotplugging.
- return ui::DeviceDataManager::GetInstance()->touchscreen_devices().size() > 0;
-}
-
-int MaxTouchPoints() {
- // Hard-code this to 11 until we have a real implementation.
- return 11;
-}
-
-// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/440503
-int GetAvailablePointerTypes() {
- // Assume a mouse is there
- int available_pointer_types = POINTER_TYPE_FINE;
- if (IsTouchDevicePresent())
- available_pointer_types |= POINTER_TYPE_COARSE;
-
- DCHECK(available_pointer_types);
- return available_pointer_types;
-}
-
-PointerType GetPrimaryPointerType() {
- int available_pointer_types = GetAvailablePointerTypes();
- if (available_pointer_types & POINTER_TYPE_FINE)
- return POINTER_TYPE_FINE;
- if (available_pointer_types & POINTER_TYPE_COARSE)
- return POINTER_TYPE_COARSE;
- DCHECK_EQ(available_pointer_types, POINTER_TYPE_NONE);
- return POINTER_TYPE_NONE;
-}
-
-// TODO(mustaq@chromium.org): Use mouse detection logic. crbug.com/440503
-int GetAvailableHoverTypes() {
- // Assume a mouse is there
- int available_hover_types = HOVER_TYPE_HOVER;
- if (IsTouchDevicePresent())
- available_hover_types |= HOVER_TYPE_ON_DEMAND;
-
- DCHECK(available_hover_types);
- return available_hover_types;
-}
-
-HoverType GetPrimaryHoverType() {
- int available_hover_types = GetAvailableHoverTypes();
- if (available_hover_types & HOVER_TYPE_HOVER)
- return HOVER_TYPE_HOVER;
- if (available_hover_types & HOVER_TYPE_ON_DEMAND)
- return HOVER_TYPE_ON_DEMAND;
- DCHECK_EQ(available_hover_types, HOVER_TYPE_NONE);
- return HOVER_TYPE_NONE;
-}
-
-} // namespace ui