| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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 "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "base/time/time.h" | 6 #include "base/time/time.h" |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "ui/events/event_utils.h" | 8 #include "ui/events/event_utils.h" |
| 9 #include "ui/events/keycodes/dom3/dom_code.h" | 9 #include "ui/events/keycodes/dom3/dom_code.h" |
| 10 #include "ui/gfx/point.h" | 10 #include "ui/gfx/geometry/point.h" |
| 11 #include "ui/gfx/vector2d.h" | 11 #include "ui/gfx/vector2d.h" |
| 12 | 12 |
| 13 namespace ui { | 13 namespace ui { |
| 14 | 14 |
| 15 // Stub implementations of platform-specific methods in events_util.h, built | 15 // Stub implementations of platform-specific methods in events_util.h, built |
| 16 // on platforms that currently do not have a complete implementation of events. | 16 // on platforms that currently do not have a complete implementation of events. |
| 17 | 17 |
| 18 void UpdateDeviceList() { | 18 void UpdateDeviceList() { |
| 19 NOTIMPLEMENTED(); | 19 NOTIMPLEMENTED(); |
| 20 } | 20 } |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 return 0; | 153 return 0; |
| 154 } | 154 } |
| 155 | 155 |
| 156 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { | 156 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { |
| 157 NOTIMPLEMENTED(); | 157 NOTIMPLEMENTED(); |
| 158 return 0; | 158 return 0; |
| 159 } | 159 } |
| 160 | 160 |
| 161 | 161 |
| 162 } // namespace ui | 162 } // namespace ui |
| OLD | NEW |