summaryrefslogtreecommitdiff
path: root/core/java/android/view/Window.java
diff options
context:
space:
mode:
authorPhilip P. Moltmann <moltmann@google.com>2017-05-06 11:28:38 -0700
committerPhilip P. Moltmann <moltmann@google.com>2017-05-08 14:02:58 -0700
commit134cee27b8a54ff4c8bebda51c5fe4a4e6f1fd8a (patch)
tree3b49049717c70ad9708634258cc85b69a3fe9b93 /core/java/android/view/Window.java
parentff6d6d94926f550a1a284e844cfd8cd2f0d73765 (diff)
No need to deal with windowTokens
we have a link to the client which is enough to find the views. Also there was some cases where the windowToken was not updated properly. This is moot now. Also: Read a array of views from the client to speed up the client<->AutofillManager communication. Fixes: 38070352 Test: CtsAutoFillServiceTestCases 1 Started autofill, saw fill UI 2 Home button 3 Kill activity in background 4 Recents -> back to activity 5 Saw fill UI restored Change-Id: I7c2c9411204fa5d65867efae9b7296399121c3a2
Diffstat (limited to 'core/java/android/view/Window.java')
-rw-r--r--core/java/android/view/Window.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/core/java/android/view/Window.java b/core/java/android/view/Window.java
index a432d30f86ca..6dd8ecfa12e3 100644
--- a/core/java/android/view/Window.java
+++ b/core/java/android/view/Window.java
@@ -480,13 +480,6 @@ public abstract class Window {
public void onWindowFocusChanged(boolean hasFocus);
/**
- * @hide
- */
- default void onBeforeAttachedToWindow() {
- // empty
- }
-
- /**
* Called when the window has been attached to the window manager.
* See {@link View#onAttachedToWindow() View.onAttachedToWindow()}
* for more information.