| Index: ui/base/touch/touch_device_ozone.cc
|
| diff --git a/ui/base/touch/touch_device_ozone.cc b/ui/base/touch/touch_device_ozone.cc
|
| index ec5a6b70d7d8e8b2fd2f85d2c2efd632557c0f0e..bc81a754eb4b00adaf5d8f70cee2d635c473d23c 100644
|
| --- a/ui/base/touch/touch_device_ozone.cc
|
| +++ b/ui/base/touch/touch_device_ozone.cc
|
| @@ -16,4 +16,24 @@ int MaxTouchPoints() {
|
| return 11;
|
| }
|
|
|
| +int GetAvailablePointerTypes() {
|
| + // TODO(mustaq): Replace the stub below
|
| + return POINTER_TYPE_NONE;
|
| +}
|
| +
|
| +PointerType GetPrimaryPointerType() {
|
| + // TODO(mustaq): Replace the stub below
|
| + return POINTER_TYPE_NONE;
|
| +}
|
| +
|
| +int GetAvailableHoverTypes() {
|
| + // TODO(mustaq): Replace the stub below
|
| + return HOVER_TYPE_NONE;
|
| +}
|
| +
|
| +HoverType GetPrimaryHoverType() {
|
| + // TODO(mustaq): Replace the stub below
|
| + return HOVER_TYPE_NONE;
|
| +}
|
| +
|
| } // namespace ui
|
|
|