diff options
| author | Dianne Hackborn <hackbod@google.com> | 2010-06-23 14:10:57 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2010-06-23 14:37:30 -0700 |
| commit | 1e4b9f3936d6f357e89360293e05a0e16d5fa440 (patch) | |
| tree | 4fc65451804b3d2741969ecb7bfd3d415f54ec51 /core/java/android/view/Window.java | |
| parent | 69a4817e3e1e368e758ff8c238deb5ee26963c04 (diff) | |
Remove InputConsumer, replacing with InputQueue.
Change-Id: Ib06907278457aaee842b123adc072840ca3602d8
Diffstat (limited to 'core/java/android/view/Window.java')
| -rw-r--r-- | core/java/android/view/Window.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/view/Window.java b/core/java/android/view/Window.java index b00d33d7e8fd..f40734b2c05a 100644 --- a/core/java/android/view/Window.java +++ b/core/java/android/view/Window.java @@ -481,11 +481,11 @@ public abstract class Window { public abstract void takeSurface(SurfaceHolder.Callback callback); /** - * Take ownership of this window's InputChannel. The window will no - * longer read and dispatch input events from the channel; it is your + * Take ownership of this window's InputQueue. The window will no + * longer read and dispatch input events from the queue; it is your * responsibility to do so. */ - public abstract void takeInputChannel(InputConsumer.Callback callback); + public abstract void takeInputQueue(InputQueue.Callback callback); /** * Return whether this window is being displayed with a floating style |
