diff options
Diffstat (limited to 'chromium/ui/base/win/touch_input.h')
-rw-r--r-- | chromium/ui/base/win/touch_input.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/chromium/ui/base/win/touch_input.h b/chromium/ui/base/win/touch_input.h index f113ec5b463..83457080a39 100644 --- a/chromium/ui/base/win/touch_input.h +++ b/chromium/ui/base/win/touch_input.h @@ -7,16 +7,17 @@ #include <windows.h> -#include "ui/base/ui_base_export.h" +#include "base/component_export.h" namespace ui { // Wrapper for GetTouchInputInfo, which is not defined before Win7. For // earlier OS's, this function returns FALSE. -UI_BASE_EXPORT BOOL GetTouchInputInfoWrapper(HTOUCHINPUT handle, - UINT count, - PTOUCHINPUT pointer, - int size); +COMPONENT_EXPORT(UI_BASE) +BOOL GetTouchInputInfoWrapper(HTOUCHINPUT handle, + UINT count, + PTOUCHINPUT pointer, + int size); } // namespace ui |