Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: samples-dev/swarm/swarm_ui_lib/touch/TouchUtil.dart

Issue 1766533002: Untested hacks to swarm to avoid warnings. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: MouseEvent Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « samples-dev/swarm/swarm_ui_lib/touch/Scrollbar.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « samples-dev/swarm/swarm_ui_lib/touch/Scrollbar.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698