summaryrefslogtreecommitdiffstats
path: root/views/events
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-11 19:46:39 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-11 19:46:39 +0000
commit8d856a8d6c62ac6493b4ff8db462433e1f6788a7 (patch)
tree5055b51c69579ad6659aae6f0fcc79e0877caa37 /views/events
parent6a0322f58d1e9cf7efa6c3e56ef2075496108cc9 (diff)
downloadchromium_src-8d856a8d6c62ac6493b4ff8db462433e1f6788a7.zip
chromium_src-8d856a8d6c62ac6493b4ff8db462433e1f6788a7.tar.gz
chromium_src-8d856a8d6c62ac6493b4ff8db462433e1f6788a7.tar.bz2
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
Diffstat (limited to 'views/events')
-rw-r--r--views/events/event.h2
1 files changed, 1 insertions, 1 deletions
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;