summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/IWindow.aidl
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/view/IWindow.aidl')
-rw-r--r--core/java/android/view/IWindow.aidl11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/java/android/view/IWindow.aidl b/core/java/android/view/IWindow.aidl
index 497bc90b..d73723a 100644
--- a/core/java/android/view/IWindow.aidl
+++ b/core/java/android/view/IWindow.aidl
@@ -70,11 +70,18 @@ oneway interface IWindow {
/**
* Drag/drop events
*/
- void dispatchDragEvent(in DragEvent event);
+ void dispatchDragEvent(in DragEvent event);
/**
* System chrome visibility changes
*/
- void dispatchSystemUiVisibilityChanged(int seq, int globalVisibility,
+ void dispatchSystemUiVisibilityChanged(int seq, int globalVisibility,
int localValue, int localChanges);
+
+ /**
+ * If the window manager returned RELAYOUT_RES_ANIMATING
+ * from relayout(), this method will be called when the animation
+ * is done.
+ */
+ void doneAnimating();
}