| Index: ui/base/touch/touch_device.cc
|
| diff --git a/ui/base/touch/touch_device.cc b/ui/base/touch/touch_device.cc
|
| index f232563208f570900d1c4e620db24d9d6dc981f0..8aa63404d8736eba1d6f25611ca07f228afa9db8 100644
|
| --- a/ui/base/touch/touch_device.cc
|
| +++ b/ui/base/touch/touch_device.cc
|
| @@ -17,22 +17,22 @@ int MaxTouchPoints() {
|
| }
|
|
|
| int GetAvailablePointerTypes() {
|
| - // Assume a non-touch-device with a keyboard and a mouse
|
| - return POINTER_TYPE_FINE | POINTER_TYPE_NONE;
|
| + // Assume a non-touch-device with a mouse
|
| + return POINTER_TYPE_FINE;
|
| }
|
|
|
| PointerType GetPrimaryPointerType() {
|
| - // Assume a non-touch-device with a keyboard and a mouse
|
| + // Assume a non-touch-device with a mouse
|
| return POINTER_TYPE_FINE;
|
| }
|
|
|
| int GetAvailableHoverTypes() {
|
| - // Assume a non-touch-device with a keyboard and a mouse
|
| - return HOVER_TYPE_HOVER | HOVER_TYPE_NONE;
|
| + // Assume a non-touch-device with a mouse
|
| + return HOVER_TYPE_HOVER;
|
| }
|
|
|
| HoverType GetPrimaryHoverType() {
|
| - // Assume a non-touch-device with a keyboard and a mouse
|
| + // Assume a non-touch-device with a mouse
|
| return HOVER_TYPE_HOVER;
|
| }
|
|
|
|
|