| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/events/ozone/evdev/event_converter_evdev.h" | 5 #include "ui/events/ozone/evdev/event_converter_evdev.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "ui/events/devices/input_device.h" | 10 #include "ui/events/devices/input_device.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 void EventConverterEvdev::Stop() { | 30 void EventConverterEvdev::Stop() { |
| 31 controller_.StopWatchingFileDescriptor(); | 31 controller_.StopWatchingFileDescriptor(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 void EventConverterEvdev::OnFileCanWriteWithoutBlocking(int fd) { | 34 void EventConverterEvdev::OnFileCanWriteWithoutBlocking(int fd) { |
| 35 NOTREACHED(); | 35 NOTREACHED(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool EventConverterEvdev::HasKeyboard() const { |
| 39 return false; |
| 40 } |
| 41 |
| 38 bool EventConverterEvdev::HasTouchscreen() const { | 42 bool EventConverterEvdev::HasTouchscreen() const { |
| 39 return false; | 43 return false; |
| 40 } | 44 } |
| 41 | 45 |
| 42 gfx::Size EventConverterEvdev::GetTouchscreenSize() const { | 46 gfx::Size EventConverterEvdev::GetTouchscreenSize() const { |
| 43 NOTREACHED(); | 47 NOTREACHED(); |
| 44 return gfx::Size(); | 48 return gfx::Size(); |
| 45 } | 49 } |
| 46 | 50 |
| 47 } // namespace ui | 51 } // namespace ui |
| OLD | NEW |