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 21 matching lines...) Expand all Loading... |
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 { | 38 bool EventConverterEvdev::HasKeyboard() const { |
39 return false; | 39 return false; |
40 } | 40 } |
41 | 41 |
| 42 bool EventConverterEvdev::HasMouse() const { |
| 43 return false; |
| 44 } |
| 45 |
42 bool EventConverterEvdev::HasTouchpad() const { | 46 bool EventConverterEvdev::HasTouchpad() const { |
43 return false; | 47 return false; |
44 } | 48 } |
45 | 49 |
46 bool EventConverterEvdev::HasTouchscreen() const { | 50 bool EventConverterEvdev::HasTouchscreen() const { |
47 return false; | 51 return false; |
48 } | 52 } |
49 | 53 |
50 gfx::Size EventConverterEvdev::GetTouchscreenSize() const { | 54 gfx::Size EventConverterEvdev::GetTouchscreenSize() const { |
51 NOTREACHED(); | 55 NOTREACHED(); |
52 return gfx::Size(); | 56 return gfx::Size(); |
53 } | 57 } |
54 | 58 |
55 void EventConverterEvdev::SetAllowedKeys( | 59 void EventConverterEvdev::SetAllowedKeys( |
56 scoped_ptr<std::set<DomCode>> allowed_keys) { | 60 scoped_ptr<std::set<DomCode>> allowed_keys) { |
57 NOTREACHED(); | 61 NOTREACHED(); |
58 } | 62 } |
59 | 63 |
60 void EventConverterEvdev::AllowAllKeys() { | 64 void EventConverterEvdev::AllowAllKeys() { |
61 NOTREACHED(); | 65 NOTREACHED(); |
62 } | 66 } |
63 | 67 |
64 } // namespace ui | 68 } // namespace ui |
OLD | NEW |