diff options
Diffstat (limited to 'views/focus/accelerator_handler.h')
-rw-r--r-- | views/focus/accelerator_handler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/focus/accelerator_handler.h b/views/focus/accelerator_handler.h index 7e17a42..b90bc84 100644 --- a/views/focus/accelerator_handler.h +++ b/views/focus/accelerator_handler.h @@ -16,23 +16,23 @@ #include <vector> #include "base/message_loop.h" -#include "views/views_api.h" +#include "views/views_export.h" namespace views { #if defined(TOUCH_UI) // Dispatch an XEvent to the RootView. Return true if the event was dispatched // and handled, false otherwise. -bool VIEWS_API DispatchXEvent(XEvent* xevent); +bool VIEWS_EXPORT DispatchXEvent(XEvent* xevent); // Keep a list of touch devices so that it is possible to determine if a pointer // event is a touch-event or a mouse-event. -void VIEWS_API SetTouchDeviceList(std::vector<unsigned int>& devices); +void VIEWS_EXPORT SetTouchDeviceList(std::vector<unsigned int>& devices); #endif // TOUCH_UI // This class delegates the key messages to the associated FocusManager class // for the window that is receiving these messages for accelerator processing. -class VIEWS_API AcceleratorHandler : public MessageLoop::Dispatcher { +class VIEWS_EXPORT AcceleratorHandler : public MessageLoop::Dispatcher { public: AcceleratorHandler(); |