summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorWale Ogunwale <ogunwale@google.com>2015-09-16 15:43:05 -0700
committerWale Ogunwale <ogunwale@google.com>2015-09-16 22:23:47 -0700
commit61b009e0591df4fcaf5c57c6ce598044263d952f (patch)
tree1da44da9a24596f64a680b6853d8fff37470f098 /tests
parent3b2658011819cfe1bed61763bb666bde6e919f79 (diff)
Don't crop home activity windows to stack bounds.
We crop windows to their stack bounds when the docked stack exists. We don't want to do this for the home activity since the docked stack isn't visible when the home activity is visible. Change-Id: Ibb3157dabbb6c979358ddc2098a01c6ddf6540e8
Diffstat (limited to 'tests')
-rw-r--r--tests/permission/src/com/android/framework/permission/tests/WindowManagerPermissionTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/permission/src/com/android/framework/permission/tests/WindowManagerPermissionTests.java b/tests/permission/src/com/android/framework/permission/tests/WindowManagerPermissionTests.java
index 95f676e08895..b9e7500598d1 100644
--- a/tests/permission/src/com/android/framework/permission/tests/WindowManagerPermissionTests.java
+++ b/tests/permission/src/com/android/framework/permission/tests/WindowManagerPermissionTests.java
@@ -94,7 +94,7 @@ public class WindowManagerPermissionTests extends TestCase {
try {
mWm.addAppToken(0, null, 0, 0, 0, false, false, 0, 0, false, false, null,
- Configuration.EMPTY);
+ Configuration.EMPTY, false);
fail("IWindowManager.addAppToken did not throw SecurityException as"
+ " expected");
} catch (SecurityException e) {