| Index: sky/sdk/lib/framework/rendering/node.dart
|
| diff --git a/sky/sdk/lib/framework/rendering/node.dart b/sky/sdk/lib/framework/rendering/node.dart
|
| index cfeec1599ddcfe35ef32316a6f407fd5990a3e7d..c6a4ef3f37b59fc54ad39262adb80d32827176aa 100644
|
| --- a/sky/sdk/lib/framework/rendering/node.dart
|
| +++ b/sky/sdk/lib/framework/rendering/node.dart
|
| @@ -179,13 +179,16 @@ abstract class RenderNode extends AbstractNode {
|
| void paint(RenderNodeDisplayList canvas) { }
|
|
|
|
|
| - // HIT TESTING
|
| + // EVENTS
|
|
|
| - void handlePointer(sky.PointerEvent event) {
|
| + void handleEvent(sky.Event event) {
|
| // override this if you have a client, to hand it to the client
|
| - // override this if you want to do anything with the pointer event
|
| + // override this if you want to do anything with the event
|
| }
|
|
|
| +
|
| + // HIT TESTING
|
| +
|
| // RenderNode subclasses are expected to have a method like the
|
| // following (with the signature being whatever passes for coordinates
|
| // for this particular class):
|
|
|