diff options
author | Dianne Hackborn <hackbod@google.com> | 2010-06-28 15:27:30 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2010-06-29 10:43:54 -0700 |
commit | 9c7f8186aea675628894b8f3844f83e791870859 (patch) | |
tree | 7c4db0fc94505652fcc5997ea249dab0018c4921 /include/ui/Input.h | |
parent | 0c3af05e12d6c3983143bd574418956e6388e45c (diff) | |
download | frameworks_native-9c7f8186aea675628894b8f3844f83e791870859.zip frameworks_native-9c7f8186aea675628894b8f3844f83e791870859.tar.gz frameworks_native-9c7f8186aea675628894b8f3844f83e791870859.tar.bz2 |
Update native activity & event APIs to follow correct conventions.
Change-Id: Ie64fb3a9c68bc9c117fa5621b75d1f609e304e0e
Diffstat (limited to 'include/ui/Input.h')
-rw-r--r-- | include/ui/Input.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ui/Input.h b/include/ui/Input.h index 57b292b..8890789 100644 --- a/include/ui/Input.h +++ b/include/ui/Input.h @@ -43,7 +43,7 @@ enum { /* * Declare a concrete type for the NDK's input event forward declaration. */ -struct input_event_t { }; +struct AInputEvent { }; namespace android { @@ -136,7 +136,7 @@ struct PointerCoords { /* * Input events. */ -class InputEvent : public input_event_t { +class InputEvent : public AInputEvent { public: virtual ~InputEvent() { } |