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

Commit f567a402 authored by Eric Lin's avatar Eric Lin
Browse files

Update comments to point to the new Input.h path.

Input.h was moved from frameworks/base/include/ui to frameworks/native/include/input in Android 4.4 by ag/326953.

Change-Id: I4066c74bf3708f2b86cb3ca817725fcb796ebccd
BUG: 387193964
Flag: DOCS_ONLY
Test: Local build
parent 271ede58
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ public final class InputEventConsistencyVerifier {

    // Bitfield of pointer ids that are currently down.
    // Assumes that the largest possible pointer id is 31, which is potentially subject to change.
    // (See MAX_POINTER_ID in frameworks/base/include/ui/Input.h)
    // (See MAX_POINTER_ID in frameworks/native/include/input/input.h)
    private int mTouchEventStreamPointers;

    // The device id and source of the current stream of touch events.
+2 −1
Original line number Diff line number Diff line
@@ -30,7 +30,8 @@ import java.lang.annotation.RetentionPolicy;
 * @hide
 */
public interface WindowManagerPolicyConstants {
    // Policy flags.  These flags are also defined in frameworks/base/include/ui/Input.h and
    // Policy flags. These flags are also defined in
    // frameworks/native/include/input/Input.h and
    // frameworks/native/libs/input/android/os/IInputConstants.aidl
    int FLAG_WAKE = 0x00000001;
    int FLAG_VIRTUAL = 0x00000002;
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ public class TouchState {
    // Pointer-related constants
    // This constant captures the current implementation detail that
    // pointer IDs are between 0 and 31 inclusive (subject to change).
    // (See MAX_POINTER_ID in frameworks/base/include/ui/Input.h)
    // (See MAX_POINTER_ID in frameworks/native/include/input/Input.h)
    public static final int MAX_POINTER_COUNT = 32;
    // Constant referring to the ids bits of all pointers.
    public static final int ALL_POINTER_ID_BITS = 0xFFFFFFFF;