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/event_utils.h" | 5 #include "ui/events/event_utils.h" |
6 | 6 |
7 #include <Cocoa/Cocoa.h> | 7 #include <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #import "base/mac/mac_util.h" | 10 #import "base/mac/mac_util.h" |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 float GetTouchRadiusY(const base::NativeEvent& native_event) { | 181 float GetTouchRadiusY(const base::NativeEvent& native_event) { |
182 NOTIMPLEMENTED(); | 182 NOTIMPLEMENTED(); |
183 return 0.f; | 183 return 0.f; |
184 } | 184 } |
185 | 185 |
186 float GetTouchAngle(const base::NativeEvent& native_event) { | 186 float GetTouchAngle(const base::NativeEvent& native_event) { |
187 NOTIMPLEMENTED(); | 187 NOTIMPLEMENTED(); |
188 return 0.f; | 188 return 0.f; |
189 } | 189 } |
190 | 190 |
| 191 float GetTouchTilt(const base::NativeEvent& native_event) { |
| 192 NOTIMPLEMENTED(); |
| 193 return 0.f; |
| 194 } |
| 195 |
| 196 float GetTouchTiltDirection(const base::NativeEvent& native_event) { |
| 197 NOTIMPLEMENTED(); |
| 198 return 0.f; |
| 199 } |
| 200 |
191 float GetTouchForce(const base::NativeEvent& native_event) { | 201 float GetTouchForce(const base::NativeEvent& native_event) { |
192 NOTIMPLEMENTED(); | 202 NOTIMPLEMENTED(); |
193 return 0.f; | 203 return 0.f; |
194 } | 204 } |
195 | 205 |
196 bool GetScrollOffsets(const base::NativeEvent& native_event, | 206 bool GetScrollOffsets(const base::NativeEvent& native_event, |
197 float* x_offset, | 207 float* x_offset, |
198 float* y_offset, | 208 float* y_offset, |
199 float* x_offset_ordinal, | 209 float* x_offset_ordinal, |
200 float* y_offset_ordinal, | 210 float* y_offset_ordinal, |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 uint16 return_value; | 275 uint16 return_value; |
266 [text getCharacters:&return_value]; | 276 [text getCharacters:&return_value]; |
267 return return_value; | 277 return return_value; |
268 } | 278 } |
269 | 279 |
270 bool IsCharFromNative(const base::NativeEvent& native_event) { | 280 bool IsCharFromNative(const base::NativeEvent& native_event) { |
271 return false; | 281 return false; |
272 } | 282 } |
273 | 283 |
274 } // namespace ui | 284 } // namespace ui |
OLD | NEW |