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/gfx/point.h" | 9 #include "ui/gfx/point.h" |
10 #include "ui/gfx/vector2d.h" | 10 #include "ui/gfx/vector2d.h" |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { | 142 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { |
143 NOTIMPLEMENTED(); | 143 NOTIMPLEMENTED(); |
144 return static_cast<KeyboardCode>(0); | 144 return static_cast<KeyboardCode>(0); |
145 } | 145 } |
146 | 146 |
147 const char* CodeFromNative(const base::NativeEvent& native_event) { | 147 const char* CodeFromNative(const base::NativeEvent& native_event) { |
148 NOTIMPLEMENTED(); | 148 NOTIMPLEMENTED(); |
149 return ""; | 149 return ""; |
150 } | 150 } |
151 | 151 |
| 152 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { |
| 153 NOTIMPLEMENTED(); |
| 154 return 0; |
| 155 } |
| 156 |
152 } // namespace ui | 157 } // namespace ui |
OLD | NEW |