Chromium Code Reviews| Index: remoting/android/java/src/org/chromium/chromoting/TouchInputHandler.java |
| diff --git a/remoting/android/java/src/org/chromium/chromoting/TouchInputHandler.java b/remoting/android/java/src/org/chromium/chromoting/TouchInputHandler.java |
| index 48e5ccf9ac19bad2da5f9a37c4cb0fa8a9fbe884..4cb3c54c88a708830f3d8a3aedabd1982588ad68 100644 |
| --- a/remoting/android/java/src/org/chromium/chromoting/TouchInputHandler.java |
| +++ b/remoting/android/java/src/org/chromium/chromoting/TouchInputHandler.java |
| @@ -4,6 +4,7 @@ |
| package org.chromium.chromoting; |
| +import android.graphics.Rect; |
| import android.view.MotionEvent; |
| /** |
| @@ -38,6 +39,12 @@ public interface TouchInputHandler { |
| void onHostSizeChanged(int width, int height); |
| /** |
| + * Called when the visibility of the soft input method has changed. Includes details about the |
| + * new size of the screen (not including system and soft input UI). |
| + */ |
| + void onSoftInputMethodVisibilityChanged(boolean inputMethodVisible, Rect innerBounds); |
|
Lambros
2015/10/29 23:39:16
Please document what the left/top of innerBounds a
joedow
2015/10/30 17:41:23
Done.
|
| + |
| + /** |
| * Whilst an animation is in progress, this method is called repeatedly until the animation is |
| * cancelled. After this method returns, the DesktopView will schedule a repaint. |
| */ |