| Index: ui/base/touch/touch_device_win.cc
|
| diff --git a/ui/base/touch/touch_device_win.cc b/ui/base/touch/touch_device_win.cc
|
| index 18f2f120d67ed226730aab723a84b96eaa123e4c..18f6968deea3b1fc2a762751610ad7e43f5e4a0d 100644
|
| --- a/ui/base/touch/touch_device_win.cc
|
| +++ b/ui/base/touch/touch_device_win.cc
|
| @@ -21,4 +21,24 @@ int MaxTouchPoints() {
|
| return GetSystemMetrics(SM_MAXIMUMTOUCHES);
|
| }
|
|
|
| +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
|
|
|