| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of touch; | 5 part of touch; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Wraps a callback with translations of mouse events to touch events. Use | 8 * Wraps a callback with translations of mouse events to touch events. Use |
| 9 * this function to invoke your callback that expects touch events after | 9 * this function to invoke your callback that expects touch events after |
| 10 * touch events are created from the actual mouse events. | 10 * touch events are created from the actual mouse events. |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 bool get metaKey => wrapped.metaKey; | 264 bool get metaKey => wrapped.metaKey; |
| 265 | 265 |
| 266 bool get shiftKey => wrapped.shiftKey; | 266 bool get shiftKey => wrapped.shiftKey; |
| 267 | 267 |
| 268 DataTransfer get clipboardData { throw new UnimplementedError(); } | 268 DataTransfer get clipboardData { throw new UnimplementedError(); } |
| 269 Point get layer { throw new UnimplementedError(); } | 269 Point get layer { throw new UnimplementedError(); } |
| 270 Element get matchingTarget { throw new UnimplementedError(); } | 270 Element get matchingTarget { throw new UnimplementedError(); } |
| 271 Point get page { throw new UnimplementedError(); } | 271 Point get page { throw new UnimplementedError(); } |
| 272 List get path { throw new UnimplementedError(); } | 272 List get path { throw new UnimplementedError(); } |
| 273 Point get screen { throw new UnimplementedError(); } | 273 Point get screen { throw new UnimplementedError(); } |
| 274 /*InputDevice*/ get sourceDevice { throw new UnimplementedError(); } |
| 274 } | 275 } |
| OLD | NEW |