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

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

am c5ed5910: Add support for new input sources.

Merge commit 'c5ed5910' into gingerbread-plus-aosp

* commit 'c5ed5910':
  Add support for new input sources.
parents 2c43b6ce c5ed5910
Loading
Loading
Loading
Loading
+34 −24
Original line number Diff line number Diff line
@@ -167794,6 +167794,38 @@
</parameter>
</constructor>
</class>
<class name="InputEvent"
 extends="java.lang.Object"
 abstract="true"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="public"
>
<implements name="android.os.Parcelable">
</implements>
<method name="getDeviceId"
 return="int"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<field name="mDeviceId"
 type="int"
 transient="false"
 volatile="false"
 static="false"
 final="false"
 deprecated="not deprecated"
 visibility="protected"
>
</field>
</class>
<class name="KeyCharacterMap"
 extends="java.lang.Object"
 abstract="false"
@@ -168130,7 +168162,7 @@
</field>
</class>
<class name="KeyEvent"
 extends="java.lang.Object"
 extends="android.view.InputEvent"
 abstract="false"
 static="false"
 final="false"
@@ -168423,17 +168455,6 @@
<parameter name="c" type="int">
</parameter>
</method>
<method name="getDeviceId"
 return="int"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getDisplayLabel"
 return="char"
 abstract="false"
@@ -171308,7 +171329,7 @@
</method>
</interface>
<class name="MotionEvent"
 extends="java.lang.Object"
 extends="android.view.InputEvent"
 abstract="false"
 static="false"
 final="true"
@@ -171397,17 +171418,6 @@
 visibility="public"
>
</method>
<method name="getDeviceId"
 return="int"
 abstract="false"
 native="false"
 synchronized="false"
 static="false"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</method>
<method name="getDownTime"
 return="long"
 abstract="false"
+818 −82

File changed.

Preview size limit exceeded, changes collapsed.

+6 −2

File changed.

Preview size limit exceeded, changes collapsed.

+6 −2
Original line number Diff line number Diff line
@@ -30,6 +30,8 @@ import android.util.Slog;
public final class InputChannel implements Parcelable {
    private static final String TAG = "InputChannel";
    
    private static final boolean DEBUG = false;
    
    public static final Parcelable.Creator<InputChannel> CREATOR
            = new Parcelable.Creator<InputChannel>() {
        public InputChannel createFromParcel(Parcel source) {
@@ -85,7 +87,9 @@ public final class InputChannel implements Parcelable {
            throw new IllegalArgumentException("name must not be null");
        }

        if (DEBUG) {
            Slog.d(TAG, "Opening input channel pair '" + name + "'");
        }
        return nativeOpenInputChannelPair(name);
    }
    
+231 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading