Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: ui/events/ozone/evdev/key_event_converter_ozone.h

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698