Chromium Code Reviews| Index: ui/base/touch/touch_device_win.h |
| diff --git a/ui/base/touch/touch_device_win.h b/ui/base/touch/touch_device_win.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6d11446d4bafdcc0123d8c31935f104fcfe8ecf0 |
| --- /dev/null |
| +++ b/ui/base/touch/touch_device_win.h |
| @@ -0,0 +1,15 @@ |
| +#ifndef UI_BASE_TOUCH_TOUCH_DEVICE_H_ |
| +#define UI_BASE_TOUCH_TOUCH_DEVICE_H_ |
| + |
| +#include "ui/base/ui_export.h" |
| + |
| +namespace ui { |
| +namespace base { |
|
Rick Byers
2012/09/10 18:15:12
We don't normally use "ui::base", do we? The ambi
girard
2012/09/10 19:03:03
The namespace is ambiguous, and this can be annoyi
|
| + |
| +// Returns true if a touch device is available. |
| +UI_EXPORT bool IsTouchDevicePresent(); |
| + |
| +} // namespace base |
| +} // namespace ui |
| + |
| +#endif // UI_BASE_TOUCH_TOUCH_DEVICE_H_ |