| Index: samples/ui_lib/touch/TouchUtil.dart
|
| ===================================================================
|
| --- samples/ui_lib/touch/TouchUtil.dart (revision 12252)
|
| +++ samples/ui_lib/touch/TouchUtil.dart (working copy)
|
| @@ -104,7 +104,7 @@
|
| return false;
|
| }
|
|
|
| -interface Touchable {
|
| +abstract class Touchable {
|
| /**
|
| * Provide the HTML element that should respond to touch events.
|
| */
|
| @@ -123,7 +123,7 @@
|
| bool onTouchStart(TouchEvent e);
|
| }
|
|
|
| -interface Draggable extends Touchable {
|
| +abstract class Draggable implements Touchable {
|
| /**
|
| * The object's drag sequence is now complete.
|
| */
|
|
|