Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_WM_CORE_IME_UTIL_CHROMEOS_H_ | |
| 6 #define UI_WM_CORE_IME_UTIL_CHROMEOS_H_ | |
| 7 | |
| 8 #include "ui/aura/window.h" | |
| 9 #include "ui/wm/wm_export.h" | |
| 10 | |
| 11 namespace gfx { | |
| 12 class Rect; | |
| 13 } | |
| 14 | |
| 15 namespace wm { | |
| 16 | |
| 17 // A property key to store the restore bounds for a window when moved by the | |
| 18 // virtual keyboard. | |
| 19 WM_EXPORT extern const aura::WindowProperty<gfx::Rect*>* const | |
| 20 kVirtualKeyboardRestoreBoundsKey; | |
| 21 | |
| 22 // Moves the window to ensure it not it the rect if needed. | |
|
sadrul
2017/05/08 15:48:48
Moves the window, if needed, to ensure it does not
yhanada
2017/05/09 03:19:14
Done.
| |
| 23 WM_EXPORT void EnsureWindowNotInRect(aura::Window* window, | |
| 24 const gfx::Rect& rect_in_screen); | |
| 25 | |
| 26 // Restores the window bounds when input client loses the focus on the window | |
|
sadrul
2017/05/08 15:47:26
. at the end
yhanada
2017/05/09 03:19:14
Done.
| |
| 27 WM_EXPORT void RestoreWindowBoundsOnClientFocusLost( | |
| 28 aura::Window* top_level_window); | |
| 29 | |
| 30 } // namespace wm | |
| 31 | |
| 32 #endif // UI_WM_CORE_IME_UTIL_CHROMEOS_H_ | |
| OLD | NEW |