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_EVDEV_KEY_EVENT_CONVERTER_OZONE_H_ | |
6 #define UI_EVENTS_OZONE_EVDEV_KEY_EVENT_CONVERTER_OZONE_H_ | |
7 | |
8 #include "ui/events/ozone/event_converter_ozone.h" | |
9 | |
10 namespace ui { | |
11 | |
12 class KeyEventConverterOzone : public EventConverterOzone { | |
13 public: | |
14 KeyEventConverterOzone(); | |
15 virtual ~KeyEventConverterOzone(); | |
16 | |
17 private: | |
18 // Overidden from base::MessagePumpLibevent::Watcher. | |
19 virtual void OnFileCanReadWithoutBlocking(int fd) OVERRIDE; | |
20 virtual void OnFileCanWriteWithoutBlocking(int fd) OVERRIDE; | |
21 | |
22 DISALLOW_COPY_AND_ASSIGN(KeyEventConverterOzone); | |
23 }; | |
24 | |
25 } // namspace ui | |
26 | |
27 #endif // UI_EVENTS_OZONE_EVDEV_KEY_EVENT_CONVERTER_OZONE_H_ | |
28 | |
OLD | NEW |