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

Commit be2c5e22 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update comments to point to the new Input.h path." into main

parents 714e9754 f567a402
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;