Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e740dd0c authored by Jeff Brown's avatar Jeff Brown Committed by Android Git Automerger
Browse files

am 69206512: Fix some API discrepancies in InputEvent.

Merge commit '69206512' into gingerbread-plus-aosp

* commit '69206512':
  Fix some API discrepancies in InputEvent.
parents 0f0541e4 69206512
Loading
Loading
Loading
Loading
+1 −21
Original line number Diff line number Diff line
@@ -179384,7 +179384,7 @@
 native="false"
 synchronized="false"
 static="false"
 final="true"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
@@ -179432,26 +179432,6 @@
 visibility="public"
>
</field>
<field name="mDeviceId"
 type="int"
 transient="false"
 volatile="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="protected"
>
</field>
<field name="mSource"
 type="int"
 transient="false"
 volatile="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="protected"
>
</field>
</class>
<class name="InputQueue"
 extends="java.lang.Object"
+3 −1
Original line number Diff line number Diff line
@@ -23,7 +23,9 @@ import android.os.Parcelable;
 * Common base class for input events.
 */
public abstract class InputEvent implements Parcelable {
    /** @hide */
    protected int mDeviceId;
    /** @hide */
    protected int mSource;
    
    /** @hide */
@@ -76,7 +78,7 @@ public abstract class InputEvent implements Parcelable {
        mSource = source;
    }
    
    public final int describeContents() {
    public int describeContents() {
        return 0;
    }