| 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..fad7bc341af421336143b7fc1f5c71b338f22207 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() {
|
| @@ -39,6 +39,10 @@ bool EventConverterEvdev::HasKeyboard() const {
|
| return false;
|
| }
|
|
|
| +bool EventConverterEvdev::HasTouchpad() const {
|
| + return false;
|
| +}
|
| +
|
| bool EventConverterEvdev::HasTouchscreen() const {
|
| return false;
|
| }
|
| @@ -48,4 +52,13 @@ gfx::Size EventConverterEvdev::GetTouchscreenSize() const {
|
| return gfx::Size();
|
| }
|
|
|
| +void EventConverterEvdev::SetAllowedKeys(
|
| + scoped_ptr<std::set<DomCode>> allowed_keys) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void EventConverterEvdev::AllowAllKeys() {
|
| + NOTREACHED();
|
| +}
|
| +
|
| } // namespace ui
|
|
|