| 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/dom/dom_code.h" | 9 #include "ui/events/keycodes/dom/dom_code.h" |
| 10 #include "ui/gfx/geometry/point.h" | 10 #include "ui/gfx/geometry/point.h" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { | 122 KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { |
| 123 NOTIMPLEMENTED(); | 123 NOTIMPLEMENTED(); |
| 124 return static_cast<KeyboardCode>(0); | 124 return static_cast<KeyboardCode>(0); |
| 125 } | 125 } |
| 126 | 126 |
| 127 DomCode CodeFromNative(const base::NativeEvent& native_event) { | 127 DomCode CodeFromNative(const base::NativeEvent& native_event) { |
| 128 NOTIMPLEMENTED(); | 128 NOTIMPLEMENTED(); |
| 129 return DomCode::NONE; | 129 return DomCode::NONE; |
| 130 } | 130 } |
| 131 | 131 |
| 132 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { | |
| 133 NOTIMPLEMENTED(); | |
| 134 return 0; | |
| 135 } | |
| 136 | |
| 137 bool IsCharFromNative(const base::NativeEvent& native_event) { | 132 bool IsCharFromNative(const base::NativeEvent& native_event) { |
| 138 NOTIMPLEMENTED(); | 133 NOTIMPLEMENTED(); |
| 139 return false; | 134 return false; |
| 140 } | 135 } |
| 141 | 136 |
| 142 uint32 WindowsKeycodeFromNative(const base::NativeEvent& native_event) { | 137 uint32 WindowsKeycodeFromNative(const base::NativeEvent& native_event) { |
| 143 NOTIMPLEMENTED(); | 138 NOTIMPLEMENTED(); |
| 144 return 0; | 139 return 0; |
| 145 } | 140 } |
| 146 | 141 |
| 147 uint16 TextFromNative(const base::NativeEvent& native_event) { | 142 uint16 TextFromNative(const base::NativeEvent& native_event) { |
| 148 NOTIMPLEMENTED(); | 143 NOTIMPLEMENTED(); |
| 149 return 0; | 144 return 0; |
| 150 } | 145 } |
| 151 | 146 |
| 152 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { | 147 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { |
| 153 NOTIMPLEMENTED(); | 148 NOTIMPLEMENTED(); |
| 154 return 0; | 149 return 0; |
| 155 } | 150 } |
| 156 | 151 |
| 157 | 152 |
| 158 } // namespace ui | 153 } // namespace ui |
| OLD | NEW |