Chromium Code Reviews| Index: ui/base/win/touch_input.h |
| diff --git a/ui/base/win/touch_input.h b/ui/base/win/touch_input.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0770e04d1f3f07d1fa52b4903ff08a768cfd46ac |
| --- /dev/null |
| +++ b/ui/base/win/touch_input.h |
| @@ -0,0 +1,19 @@ |
| +// 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. |
| + |
| +#ifndef UI_BASE_WIN_TOUCH_INPUT_H_ |
| +#define UI_BASE_WIN_TOUCH_INPUT_H_ |
| + |
| +#include <windows.h> |
| +#include "ui/base/ui_export.h" |
|
sky
2013/03/08 21:58:58
nit: newline between 8/9.
girard
2013/03/11 15:04:42
Done.
|
| + |
| +namespace ui { |
| + |
| +// Wrapper for GetTouchInputInfo, which is not defined before Win7 |
|
sky
2013/03/08 21:58:58
End sentence with period. Also, document returns f
girard
2013/03/11 15:04:42
Done.
|
| +UI_EXPORT BOOL GetTouchInputInfoWrapper(HTOUCHINPUT handle, UINT count, |
|
sky
2013/03/08 21:58:58
when you wrap, each param on its own line.
girard
2013/03/11 15:04:42
Done.
|
| + PTOUCHINPUT pointer, int size); |
| + |
| +} // namespace ui |
| + |
| +#endif // UI_BASE_WIN_TOUCH_INPUT_H_ |