From 8d856a8d6c62ac6493b4ff8db462433e1f6788a7 Mon Sep 17 00:00:00 2001 From: "sadrul@chromium.org" Date: Mon, 11 Apr 2011 19:46:39 +0000 Subject: touch: identity for a finger is an int, not a bool. TBR=rjkroege@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81141 0039d316-1c4b-4281-b951-d872f2087c98 --- views/events/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/events/event.h b/views/events/event.h index ef5f256..2a11d37 100644 --- a/views/events/event.h +++ b/views/events/event.h @@ -257,7 +257,7 @@ class TouchEvent : public LocatedEvent { // from |source| coordinate system to |target| coordinate system. TouchEvent(const TouchEvent& model, View* source, View* target); - bool identity() const { return touch_id_; } + int identity() const { return touch_id_; } private: friend class RootView; -- cgit v1.1