summaryrefslogtreecommitdiff
path: root/core/java/android/view/WindowInsetsAnimationController.java
diff options
context:
space:
mode:
authorTiger Huang <tigerhuang@google.com>2019-11-21 16:23:32 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-11-21 16:23:32 +0000
commite155ed48fae8b64b8382c4e76768738214c6ff33 (patch)
tree16ca69ca1174de79fa02412768bdf0a2117c6f6c /core/java/android/view/WindowInsetsAnimationController.java
parentc80b045c0ae896a2168f72280adca54c98cfe741 (diff)
parent332793ba05e286dec2ba83bc0ccd8bb2e4162099 (diff)
Merge "Window Manager Flag Migration (6/n)"
Diffstat (limited to 'core/java/android/view/WindowInsetsAnimationController.java')
-rw-r--r--core/java/android/view/WindowInsetsAnimationController.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/view/WindowInsetsAnimationController.java b/core/java/android/view/WindowInsetsAnimationController.java
index cf4415d2b2ba..5cbf3b852018 100644
--- a/core/java/android/view/WindowInsetsAnimationController.java
+++ b/core/java/android/view/WindowInsetsAnimationController.java
@@ -18,7 +18,7 @@ package android.view;
import android.annotation.NonNull;
import android.graphics.Insets;
-import android.view.WindowInsets.Type.InsetType;
+import android.view.WindowInsets.Type.InsetsType;
import android.view.WindowInsetsAnimationListener.InsetsAnimation;
/**
@@ -60,9 +60,9 @@ public interface WindowInsetsAnimationController {
@NonNull Insets getCurrentInsets();
/**
- * @return The {@link InsetType}s this object is currently controlling.
+ * @return The {@link InsetsType}s this object is currently controlling.
*/
- @InsetType int getTypes();
+ @InsetsType int getTypes();
/**
* Modifies the insets by indirectly moving the windows around in the system that are causing
@@ -94,5 +94,5 @@ public interface WindowInsetsAnimationController {
* @param shownTypes The list of windows causing insets that should remain shown after finishing
* the animation.
*/
- void finish(@InsetType int shownTypes);
+ void finish(@InsetsType int shownTypes);
}