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

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

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/_evdev//, add event_factory_delegate_ozone.cc, move GetRequestedDelegate() 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_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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698