History log of /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
de84f0e77ea2bf713d15c290264059a413c2486a 12-Jun-2013 John Spurlock <jspurlock@google.com> Organize the imports in systemui.

To follow android conventions, more importantly to remove the
unused.

Change-Id: I75881718e84360a579a3b02c26489ad250bc9227
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
cd686b5b6d4166b510df8e32138479a9559bc117 05-Jun-2013 John Spurlock <jspurlock@google.com> Migrate systemui Slog calls to Log

Change-Id: Ib6734c85960f06fed646599565b8eeba26b9e98e
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
b8bacccfc159fe204e5b09b52de55f8ba853f713 05-Jun-2013 John Spurlock <jspurlock@google.com> Remove a few non-public dependencies.

Maps, CharSequences, MotionEvent.copy

Change-Id: I97e15b0f9530623f65e061674bd7ec56d8fefa3e
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
3e4a3ea2ff03a6a1f1f7a2bebac9a86fe6555754 27-Mar-2013 Chirayu Desai <cdesai@cyanogenmod.org> Correct executable bit for source files [Take 2]

Change Ieb51bafb46c895a21d2e83696f5a901ba752b2c5 left out some
files, this fixes them.

Change-Id: Ia949a8581668836ea0251602e048f09c852f5169
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
fa71962948092786c5190f39fd25ce3d55a4e287 16-Aug-2012 Daniel Sandler <dsandler@android.com> Turn off an assert.

Change-Id: Ifad4bd65ddcedc6e2dd018695fd37ddbf9163e80
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
75fcac4eebdf7ff68a534e9af1664c571f40ef30 25-Jul-2012 Daniel Sandler <dsandler@android.com> Fix NPE.

Bug: 6878563
Change-Id: I9a2afed6e2b517c2d6b54cea3d812fb84835fb00
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
780d668bee92ecdef6e08d92fc227f92425a58c8 24-Jul-2012 Daniel Sandler <dsandler@android.com> Pressure info in captured gestures.

Change-Id: If72f8d5ea0cb748f60357441153d5fb8ac1b8143
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java
3380534a62abf20b4509db6068ac02b1b880712f 23-Jul-2012 Daniel Sandler <dsandler@android.com> Collecting some data on notification panel gestures.

Look for it in /sdcard/statusbar_gestures.dat, in "JSON
lines" format: one list of gestures per line; each gesture
is itself a list of objects representing motion events and
tags (annotations).

Exploded example:

[ // list of gestures
[ // this starts a gesture
{"type":"motion",
"time":1347697, // in SystemClock.uptimeMillis() base,
// like MotionEvents
"action":"down", // down, up, move, cancel, else numeric
"x":277.61,
"y":1.00
},
{"type":"tag",
"time":1347701,
"tag":"tracking", // "tracking" or "fling"
"info":"collapsed" // extra stuff
},
... // more events
],
... // more gestures
]
// newline
[ // another list of gestures
...
]
...

Change-Id: Ifacbf03749c879cd82fb899289fb79a4bdd4fc3b
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/GestureRecorder.java