Fix the build.

Change-Id: I7ed20f3d2fb1a80974fbbfe42fdd2f8f135ee401
This commit is contained in:
Romain Guy
2010-03-10 12:40:04 -08:00
parent 7717beed37
commit 80ea00c839
2 changed files with 26 additions and 4 deletions

View File

@@ -174601,6 +174601,19 @@
visibility="public"
>
</method>
<method name="getXVelocity"
return="float"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="id" type="int">
</parameter>
</method>
<method name="getYVelocity"
return="float"
abstract="false"
@@ -174612,6 +174625,19 @@
visibility="public"
>
</method>
<method name="getYVelocity"
return="float"
abstract="false"
native="false"
synchronized="false"
static="false"
final="false"
deprecated="not deprecated"
visibility="public"
>
<parameter name="id" type="int">
</parameter>
</method>
<method name="obtain"
return="android.view.VelocityTracker"
abstract="false"

View File

@@ -259,8 +259,6 @@ public final class VelocityTracker implements Poolable<VelocityTracker> {
*
* @param id Which pointer's velocity to return.
* @return The previously computed X velocity.
*
* @hide Pending API approval
*/
public float getXVelocity(int id) {
return mXVelocity[id];
@@ -272,8 +270,6 @@ public final class VelocityTracker implements Poolable<VelocityTracker> {
*
* @param id Which pointer's velocity to return.
* @return The previously computed Y velocity.
*
* @hide Pending API approval
*/
public float getYVelocity(int id) {
return mYVelocity[id];