summaryrefslogtreecommitdiffstats
path: root/core/java/android/service/gesture/IGestureService.aidl
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/service/gesture/IGestureService.aidl')
-rw-r--r--core/java/android/service/gesture/IGestureService.aidl11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/service/gesture/IGestureService.aidl b/core/java/android/service/gesture/IGestureService.aidl
new file mode 100644
index 0000000..1944d50
--- /dev/null
+++ b/core/java/android/service/gesture/IGestureService.aidl
@@ -0,0 +1,11 @@
+package android.service.gesture;
+
+import android.app.PendingIntent;
+
+/** @hide */
+interface IGestureService {
+
+ void setOnLongPressPendingIntent(in PendingIntent pendingIntent);
+ void setOnDoubleClickPendingIntent(in PendingIntent pendingIntent);
+
+}