OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_EVENTS_OZONE_EVENT_FACTORY_DELEGATE_EVDEV_H_ |
| 6 #define UI_EVENTS_OZONE_EVENT_FACTORY_DELEGATE_EVDEV_H_ |
| 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "ui/events/ozone/event_factory_delegate_ozone.h" |
| 10 |
| 11 namespace ui { |
| 12 |
| 13 // Ozone events implementation for the Linux input subsystem ("evdev"). |
| 14 class EventFactoryDelegateEvdev : public EventFactoryDelegateOzone { |
| 15 public: |
| 16 EventFactoryDelegateEvdev(); |
| 17 virtual ~EventFactoryDelegateEvdev(); |
| 18 |
| 19 virtual void CreateStartupEventConverters( |
| 20 EventFactoryOzone* factory) OVERRIDE; |
| 21 |
| 22 private: |
| 23 DISALLOW_COPY_AND_ASSIGN(EventFactoryDelegateEvdev); |
| 24 }; |
| 25 |
| 26 } // namespace ui |
| 27 |
| 28 #endif // UI_EVENTS_OZONE_EVENT_FACTORY_DELEGATE_EVDEV_H_ |
OLD | NEW |