| Index: ui/events/ozone/evdev/event_converter_evdev.cc
|
| diff --git a/ui/events/ozone/evdev/event_converter_evdev.cc b/ui/events/ozone/evdev/event_converter_evdev.cc
|
| index 8d987778860d2c31cabcd8f59c8758c9ccbfe1fe..d05d76084465a2856fde4fb03659e51a5bac4496 100644
|
| --- a/ui/events/ozone/evdev/event_converter_evdev.cc
|
| +++ b/ui/events/ozone/evdev/event_converter_evdev.cc
|
| @@ -15,7 +15,7 @@ EventConverterEvdev::EventConverterEvdev(int fd,
|
| const base::FilePath& path,
|
| int id,
|
| InputDeviceType type)
|
| - : fd_(fd), path_(path), id_(id), type_(type) {
|
| + : fd_(fd), path_(path), id_(id), type_(type), ignore_events_(false) {
|
| }
|
|
|
| EventConverterEvdev::~EventConverterEvdev() {
|
| @@ -35,10 +35,23 @@ void EventConverterEvdev::OnFileCanWriteWithoutBlocking(int fd) {
|
| NOTREACHED();
|
| }
|
|
|
| +void EventConverterEvdev::SetAllowedKeys(
|
| + scoped_ptr<std::set<KeyboardCode> > allowed_keys) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EventConverterEvdev::AllowAllKeys() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| bool EventConverterEvdev::HasKeyboard() const {
|
| return false;
|
| }
|
|
|
| +bool EventConverterEvdev::HasTouchpad() const {
|
| + return false;
|
| +}
|
| +
|
| bool EventConverterEvdev::HasTouchscreen() const {
|
| return false;
|
| }
|
|
|